Skip to content

Commit 3ee566a

Browse files
committed
The WASI target is now wasm32-wasip1
1 parent 1681666 commit 3ee566a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,21 @@ jobs:
8787
targets: wasm32-unknown-unknown
8888
- run: cargo build --verbose --target wasm32-unknown-unknown ${{ matrix.cargoflags }}
8989

90-
# wasm32-wasi can test the fallback by running in wasmtime.
90+
# wasm32-wasip1 can test the fallback by running in wasmtime.
9191
wasi:
9292
name: WebAssembly (WASI)
9393
runs-on: ubuntu-latest
9494
env:
95-
CARGO_TARGET_WASM32_WASI_RUNNER: /home/runner/.wasmtime/bin/wasmtime
95+
CARGO_TARGET_WASM32_WASIP1_RUNNER: /home/runner/.wasmtime/bin/wasmtime
9696
steps:
9797
- uses: actions/checkout@v4
9898
- uses: dtolnay/rust-toolchain@stable
9999
with:
100-
targets: wasm32-wasi
100+
targets: wasm32-wasip1
101101
- run: curl https://wasmtime.dev/install.sh -sSf | bash
102-
- run: cargo build --verbose --target wasm32-wasi
103-
- run: cargo test --verbose --target wasm32-wasi --package rayon
104-
- run: cargo test --verbose --target wasm32-wasi --package rayon-core
102+
- run: cargo build --verbose --target wasm32-wasip1
103+
- run: cargo test --verbose --target wasm32-wasip1 --package rayon
104+
- run: cargo test --verbose --target wasm32-wasip1 --package rayon-core
105105

106106
fmt:
107107
name: Format

0 commit comments

Comments
 (0)