Skip to content

Commit

Permalink
ci: archive any crash reports on test failures (#3009)
Browse files Browse the repository at this point in the history
  • Loading branch information
armcknight committed May 8, 2023
1 parent d3edf46 commit a6ac3d2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,14 @@ jobs:
path: |
raw-test-output.log
- name: Archiving Crash Logs
uses: actions/upload-artifact@v3
if: ${{ failure() || cancelled() }}
with:
name: crash-logs-${{matrix.platform}}-xcode-${{matrix.xcode}}-os-${{matrix.test-destination-os}}
path: |
~/Library/Logs/DiagnosticReports/**
# We can upload all coverage reports, because codecov merges them.
# See https://docs.codecov.io/docs/merging-reports
# Checkout .codecov.yml to see the config of Codecov
Expand Down

0 comments on commit a6ac3d2

Please sign in to comment.