Skip to content

Commit

Permalink
Merge pull request #4911 from gassmoeller/prevent_overwriting_artifacts
Browse files Browse the repository at this point in the history
Prevent overwriting artifacts in CI pipeline
  • Loading branch information
tjhei committed Jul 15, 2022
2 parents df19323 + bdb7b70 commit 6ca85ef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/linux.yml
Expand Up @@ -100,14 +100,17 @@ jobs:
- image: "geodynamics/aspect-tester:focal-dealii-9.3-v2"
run-tests: "ON"
compare-tests: "ON"
result-file: "changes-test-results-9.3.diff"
container-options: '--name container'
- image: "geodynamics/aspect-tester:focal-dealii-9.4-v2"
run-tests: "ON"
compare-tests: "OFF"
result-file: "changes-test-results-9.4.diff"
container-options: '--name container'
- image: dealii/dealii:master-focal
run-tests: "ON"
compare-tests: "OFF"
result-file: "changes-test-results-master.diff"
container-options: '--user 0 --name container'

container:
Expand Down Expand Up @@ -154,7 +157,7 @@ jobs:
- name: archive test results
uses: actions/upload-artifact@v2
with:
name: changes-test-results.diff
name: ${{ matrix.result-file }}
path: build/changes-test-results.diff
- name: check test results
run: |
Expand Down

0 comments on commit 6ca85ef

Please sign in to comment.