We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c7db7f commit 17d2a14Copy full SHA for 17d2a14
.github/workflows/ci.yml
@@ -17,7 +17,7 @@ jobs:
17
18
strategy:
19
matrix:
20
- os: [ ubuntu-latest, windows-latest, macos-latest ]
+ os: [ ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-latest ]
21
22
steps:
23
- uses: actions/checkout@v4
@@ -111,6 +111,13 @@ jobs:
111
cargo clean -p blst --release --target=aarch64-apple-darwin
112
echo
113
fi
114
+ echo '--- build aarch64-apple-ios'
115
+ echo
116
+ rustup target add aarch64-apple-ios
117
+ env IPHONEOS_DEPLOYMENT_TARGET=10.0 \
118
+ cargo test --no-run --release --target=aarch64-apple-ios
119
+ cargo clean -p blst --release --target=aarch64-apple-ios
120
121
elif [ $OSTYPE = "msys" ]; then
122
if which clang-cl > /dev/null 2>&1; then
123
echo '-- test i686-pc-windows-msvc'
0 commit comments