Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ jobs:
python-version: '3.12'
# https://github.com/matplotlib/matplotlib/issues/29732
pygobject-ver: '<3.52.0'
- os: macos-15 # This runner is on M1 (arm64) chips.
- os: macos-26 # This runner is on M1 (arm64) chips.
python-version: '3.13'
# https://github.com/matplotlib/matplotlib/issues/29732
pygobject-ver: '<3.52.0'
- os: macos-15 # This runner is on M1 (arm64) chips.
- os: macos-26 # This runner is on M1 (arm64) chips.
python-version: '3.14'
# https://github.com/matplotlib/matplotlib/issues/29732
pygobject-ver: '<3.52.0'
Expand Down Expand Up @@ -378,6 +378,20 @@ jobs:
xcrun llvm-cov export -format="lcov" build/*/src/*.so \
-instr-profile default.profdata > info.lcov
fi

- name: Collect macOS crash logs
if: failure() && runner.os == 'macOS'
run: |
mkdir -p ./macos_crash_logs
cp -R "$HOME/Library/Logs/DiagnosticReports/" ./macos_crash_logs/ 2>/dev/null

- name: Upload macOS crash logs
if: failure() && runner.os == 'macOS'
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: macos-crash-logs
path: ./macos_crash_logs

- name: Upload code coverage
if: ${{ !cancelled() && github.event_name != 'schedule' }}
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
Expand Down
Loading