Skip to content

Commit

Permalink
next try
Browse files Browse the repository at this point in the history
  • Loading branch information
ebehner committed Nov 12, 2024
1 parent a8b5f87 commit 9acf066
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/extended-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,17 @@ jobs:
docker build -t dewolf .
- name: Run Tests
id: run_tests
run: |
docker run -v "$(pwd)"/artifacts:/opt/dewolf/crash_reports dewolf make extendedtests
- name: Check directories
if: always()
run: |
pwd
ls -lh
docker run dewolf make extendedtests
- name: Upload Crash Reports
if: ${{ failure() && steps.run_tests.conclusion == 'failure' }} # Only run if previous steps fail
uses: actions/upload-artifact@v4
with:
name: crash-reports
path: crash_reports
retention-days: 1 # Adjust retention as needed
path: artifacts/*
retention-days: 7 # Adjust retention as needed

0 comments on commit 9acf066

Please sign in to comment.