Skip to content

Commit

Permalink
ci: wip test artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Jul 6, 2023
1 parent 96f55a5 commit 3523ba2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-prod-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,29 @@ jobs:
with:
name: conformance-${{ matrix.target }}.html
path: ./output.html
- name: Upload JSON output
if: (failure() || success())
uses: actions/upload-artifact@v3
with:
name: conformance-${{ matrix.target }}.json
path: ./output.json
aggregate:
runs-on: "ubuntu-latest"
needs: [test]
strategy:
fail-fast: true
defaults:
run:
shell: bash
steps:
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
path: artifacts
- name: Aggregate results
run: |
set -e
set -o pipefail
ls ./artifacts
working-directory: ./artifacts

0 comments on commit 3523ba2

Please sign in to comment.