We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff94842 + 0d03681 commit eb2b80fCopy full SHA for eb2b80f
.github/workflows/e2e-tests.yml
@@ -9,4 +9,10 @@ jobs:
9
runs-on: ubuntu-latest
10
steps:
11
- uses: actions/checkout@v2
12
- - run: make -f x.mk e2e-local NODES=2
+ - run: make -f x.mk e2e-local NODES=2 JUNIT_DIRECTORY=./artifacts/
13
+ - name: Archive production artifacts # test results are only uploaded if any of the e2e tests fails
14
+ if: ${{ failure() }}
15
+ uses: actions/upload-artifact@v2
16
+ with:
17
+ name: e2e-test-output-${{ github.sha }}-${{ github.run_id }}
18
+ path: ${{ github.workspace }}/bin/artifacts/*
0 commit comments