Skip to content

Commit 8eb9c2d

Browse files
authored
Merge pull request #350 from rust-random/android
Disable cross build/tests on Android
2 parents 41cc07a + 5042b09 commit 8eb9c2d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ jobs:
134134
matrix:
135135
target: [
136136
aarch64-unknown-linux-gnu,
137-
aarch64-linux-android,
137+
# TODO: add Android tests back when the cross cuts a new release.
138+
# See: https://github.com/cross-rs/cross/issues/1222
139+
# aarch64-linux-android,
138140
mips-unknown-linux-gnu,
139141
wasm32-unknown-emscripten,
140142
]
@@ -206,7 +208,7 @@ jobs:
206208
- name: Install precompiled wasm-pack
207209
shell: bash
208210
run: |
209-
VERSION=v0.10.3
211+
VERSION=v0.11.0
210212
URL=https://github.com/rustwasm/wasm-pack/releases/download/${VERSION}/wasm-pack-${VERSION}-${{ matrix.host }}.tar.gz
211213
wget -O - $URL | tar -xz --strip-components=1 -C ~/.cargo/bin
212214
wasm-pack --version

0 commit comments

Comments
 (0)