Skip to content

Commit ceef3c9

Browse files
committed
ci: fix wasm32 environment variables
I forgot that the target name appears in the environment variable. Arrrgh.
1 parent cf4057f commit ceef3c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v$WASMTIME_VERSION/wasmtime-v$WASMTIME_VERSION-x86_64-linux.tar.xz
153153
tar xvf wasmtime-v$WASMTIME_VERSION-x86_64-linux.tar.xz
154154
echo `pwd`/wasmtime-v$WASMTIME_VERSION-x86_64-linux >> $GITHUB_PATH
155-
echo "CARGO_TARGET_WASM32_WASI_RUNNER=wasmtime run --wasm simd --" >> $GITHUB_ENV
155+
echo "CARGO_TARGET_WASM32_WASIP1_RUNNER=wasmtime run --wasm simd --" >> $GITHUB_ENV
156156
- name: Basic build
157157
run: cargo build --verbose
158158
- name: Run tests
@@ -185,7 +185,7 @@ jobs:
185185
curl -LO https://github.com/bytecodealliance/wasmtime/releases/download/v$WASMTIME_VERSION/wasmtime-v$WASMTIME_VERSION-x86_64-linux.tar.xz
186186
tar xvf wasmtime-v$WASMTIME_VERSION-x86_64-linux.tar.xz
187187
echo `pwd`/wasmtime-v$WASMTIME_VERSION-x86_64-linux >> $GITHUB_PATH
188-
echo "CARGO_TARGET_WASM32_WASI_RUNNER=wasmtime run --" >> $GITHUB_ENV
188+
echo "CARGO_TARGET_WASM32_WASIP1_RUNNER=wasmtime run --" >> $GITHUB_ENV
189189
- name: Basic build
190190
run: cargo build --verbose
191191
- name: Run tests

0 commit comments

Comments
 (0)