We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c16a6d8 commit b455757Copy full SHA for b455757
1 file changed
.github/workflows/ci.yml
@@ -84,7 +84,9 @@ jobs:
84
if: env.turbo_cache_hit != 1
85
run: |
86
cargo install cargo-ndk
87
- rustup target add aarch64-linux-android
+ rustup target add \
88
+ aarch64-linux-android \
89
+ armv7-linux-androideabi
90
91
- name: Cache Gradle
92
@@ -167,7 +169,10 @@ jobs:
167
169
168
170
- name: Install iOS target for Rust
171
- run: rustup target add aarch64-apple-ios
172
+ run: rustup target add \
173
+ aarch64-apple-ios \
174
+ aarch64-apple-ios-sim
175
+
176
177
- name: Build for iOS
178
0 commit comments