Skip to content

Commit

Permalink
CI: Test aarch64-apple-ios in simulator.
Browse files Browse the repository at this point in the history
  • Loading branch information
briansmith committed Feb 20, 2024
1 parent e512aef commit f3435c3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,22 @@ jobs:
ios-tests:
name: iOS Simulator Test
runs-on: macos-12
strategy:
matrix:
# Only test on stable to reduce macOS CI jobs
toolchain: stable
include:
# x86_64-apple-darwin
- os: macos-12
target: x86_64-apple-ios
# aarch64-apple-darwin
- os: macos-14
target: aarch64-apple-ios
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-apple-ios
targets: ${{ matrix.target }}
- name: Install precompiled cargo-dinghy
run: |
VERSION=0.6.2
Expand Down

0 comments on commit f3435c3

Please sign in to comment.