Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable cross build/tests on Android #350

Merged
merged 2 commits into from Mar 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -134,7 +134,9 @@ jobs:
matrix:
target: [
aarch64-unknown-linux-gnu,
aarch64-linux-android,
# TODO: add Android tests back when the cross cuts a new release.
# See: https://github.com/cross-rs/cross/issues/1222
# aarch64-linux-android,
mips-unknown-linux-gnu,
wasm32-unknown-emscripten,
]
Expand Down Expand Up @@ -206,7 +208,7 @@ jobs:
- name: Install precompiled wasm-pack
shell: bash
run: |
VERSION=v0.10.3
VERSION=v0.11.0
URL=https://github.com/rustwasm/wasm-pack/releases/download/${VERSION}/wasm-pack-${VERSION}-${{ matrix.host }}.tar.gz
wget -O - $URL | tar -xz --strip-components=1 -C ~/.cargo/bin
wasm-pack --version
Expand Down