Skip to content

Commit

Permalink
* add task to save failure data
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhughes-usgs committed Jun 14, 2024
1 parent c15446d commit ed9a70a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ jobs:
run: |
pixi run build-all
- name: Upload failed test output
if: failure()
uses: actions/upload-artifact@v4
with:
name: failed-${{ runner.os }}-intel
path: pymake/autotest/.failed


- name: Print coverage report before upload
run: |
pixi run coverage-report
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/pymake-gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,15 @@ jobs:
if: ${{ github.event_name == 'schedule' }}
run: |
pixi run build-all
- name: Upload failed test output
if: failure()
uses: actions/upload-artifact@v4
with:
name: failed-${{ runner.os }}-gcc
path: pymake/autotest/.failed


- name: Print coverage report before upload
run: |
pixi run coverage-report
Expand Down

0 comments on commit ed9a70a

Please sign in to comment.