Skip to content

Commit

Permalink
Workflow for android testing. #66
Browse files Browse the repository at this point in the history
  • Loading branch information
jguhlin committed Nov 22, 2024
1 parent 6c86159 commit a53d533
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build-test-rust-minimap2-sys.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,24 @@ jobs:
run: cargo test
- name: Run minimap2-sys simde tests
run: cargo test --features simde


test-android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Cross
run: rustup target add aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android
- run: cargo install cross --git https://github.com/cross-rs/cross
- run: cd minimap2-sys
- name: Run minimap2-sys tests on Android aarch64
run: cross test --target aarch64-linux-android
- name: Run minimap2-sys tests on Android armv7
run: cross test --target armv7-linux-androideabi
- name: Run minimap2-sys tests on Android i686
run: cross test --target i686-linux-android
- name: Run minimap2-sys tests on Android x86_64
run: cross test --target x86_64-linux-android

test-macos-13:
runs-on: macos-13
steps:
Expand Down

0 comments on commit a53d533

Please sign in to comment.