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 9783e27 commit e853174
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 @@ -88,6 +88,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 @@ -85,7 +85,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 e853174

Please sign in to comment.