Skip to content

Commit

Permalink
Update macOS GHA to account for runner changes
Browse files Browse the repository at this point in the history
  • Loading branch information
complexspaces committed Aug 25, 2024
1 parent 91ea846 commit 91fd2ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
triple:
- { os: 'ubuntu-latest', target: 'x86_64-unknown-linux-gnu', cross: false }
- { os: 'ubuntu-latest', target: 'i686-unknown-linux-gnu', cross: true }
- { os: 'macos-latest', target: 'x86_64-apple-darwin', cross: false }
# `macos-latest` is now using macOS 14 and ARM64. Future runners will also
# be ARM64: https://github.com/actions/runner-images/issues/9741
- { os: 'macos-latest', target: 'x86_64-apple-darwin', cross: false, always_install_target: true }
- { os: 'macos-latest', target: 'aarch64-apple-darwin', cross: false }
- { os: 'windows-latest', target: 'x86_64-pc-windows-msvc', cross: false }
# iOS
- { os: 'macos-latest', target: 'aarch64-apple-ios', cross: true }
Expand Down

0 comments on commit 91fd2ba

Please sign in to comment.