We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 41cc07a + 5042b09 commit 8eb9c2dCopy full SHA for 8eb9c2d
.github/workflows/tests.yml
@@ -134,7 +134,9 @@ jobs:
134
matrix:
135
target: [
136
aarch64-unknown-linux-gnu,
137
- aarch64-linux-android,
+ # 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,
140
mips-unknown-linux-gnu,
141
wasm32-unknown-emscripten,
142
]
@@ -206,7 +208,7 @@ jobs:
206
208
- name: Install precompiled wasm-pack
207
209
shell: bash
210
run: |
- VERSION=v0.10.3
211
+ VERSION=v0.11.0
212
URL=https://github.com/rustwasm/wasm-pack/releases/download/${VERSION}/wasm-pack-${VERSION}-${{ matrix.host }}.tar.gz
213
wget -O - $URL | tar -xz --strip-components=1 -C ~/.cargo/bin
214
wasm-pack --version
0 commit comments