Skip to content

Commit 141dcb6

Browse files
committed
Try to fix CI
1 parent b3094b4 commit 141dcb6

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.cargo/config.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Allow normal use of "cargo run" and "cargo test" on these wasm32 platforms.
22
[target.wasm32-unknown-unknown]
33
runner = 'wasm-bindgen-test-runner'
4-
[target.wasm32-wasi]
4+
[target.wasm32-wasip1]
5+
runner = 'wasmtime'
6+
[target.wasm32-wasip2]
57
runner = 'wasmtime'
68

79
# Just run on node by default (that's where emscripten is tested)

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ jobs:
283283
targets: wasm32-wasip1
284284
- name: Install precompiled wasmtime
285285
run: |
286-
VERSION=v23.0.2
286+
VERSION=v24.0.0
287287
URL=https://github.com/bytecodealliance/wasmtime/releases/download/${VERSION}/wasmtime-${VERSION}-x86_64-linux.tar.xz
288288
wget -O - $URL | tar -xJ --strip-components=1 -C ~/.cargo/bin
289289
wasmtime --version
@@ -301,7 +301,7 @@ jobs:
301301
components: rust-src
302302
- name: Install precompiled wasmtime
303303
run: |
304-
VERSION=v23.0.2
304+
VERSION=v24.0.0
305305
URL=https://github.com/bytecodealliance/wasmtime/releases/download/${VERSION}/wasmtime-${VERSION}-x86_64-linux.tar.xz
306306
wget -O - $URL | tar -xJ --strip-components=1 -C ~/.cargo/bin
307307
wasmtime --version

0 commit comments

Comments
 (0)