We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbf541b commit 2aa49e9Copy full SHA for 2aa49e9
.github/workflows/ci.yml
@@ -271,8 +271,13 @@ jobs:
271
272
- name: Zig
273
run: |
274
- base_dir=zig-x86_64-linux-0.15.2
275
- curl -sSf https://ziglang.org/download/0.15.2/$base_dir.tar.xz | unxz -c | tar xf -
+ ver=0.15.2
+ base_dir=zig-x86_64-linux-$ver
276
+ curl -sSf https://ziglang.org/download/$ver/$base_dir.tar.xz | unxz -c | tar xf -
277
if [ -x $base_dir/zig ]; then
- $base_dir/zig build test
278
+ PATH=$PWD/$base_dir:$PATH
279
+ zig build test
280
+ curl https://wasmtime.dev/install.sh -sSf | bash
281
+ PATH=~/.wasmtime/bin:$PATH
282
+ zig build test -Dtarget=wasm32-wasi -fwasmtime
283
fi
0 commit comments