We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a620e07 commit 01bf6d4Copy full SHA for 01bf6d4
1 file changed
.github/workflows/ci.yml
@@ -218,6 +218,26 @@ jobs:
218
- name: Build and test
219
run: cargo test -vv
220
221
+
222
+ android-cross-compile:
223
+ name: Cross-Compile for Android (${{ matrix.package }})
224
+ runs-on: ubuntu-latest
225
+ strategy:
226
+ fail-fast: false
227
+ matrix:
228
+ package:
229
+ - android-aarch64
230
+ - android-armv7
231
+ - android-x86_64
232
+ steps:
233
+ - uses: actions/checkout@v4
234
235
+ - name: Install Nix
236
+ uses: cachix/install-nix-action@v31
237
238
+ - name: Build
239
+ run: nix build .#${{ matrix.package }} -L
240
241
fuzz-corpus:
242
name: Verify Fuzz Corpus
243
runs-on: ubuntu-latest
0 commit comments