authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-11-03 23:21:15+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-11-04 20:28:54+01:00
logbb14bd35bd8e7c92d5d1662be391226c4a37fd24
tree90166c6b86b11b919f9289a62c5ac8190d33cb38
parent342ba960f77010fd195dfb319f97c7329e090a4d

Update wasmtime to version 0.20

The version we were using in CI is now getting quite old, and we want to make sure that the code we produce is compatible with current versions of Wasmtime.

1 files changed, 2 insertions(+), 2 deletions(-)

ci/azure/linux_script+2-2
...@@ -19,8 +19,8 @@ wget https://ziglang.org/deps/$QEMUBASE.tar.xz...@@ -19,8 +19,8 @@ wget https://ziglang.org/deps/$QEMUBASE.tar.xz
19tar xf $QEMUBASE.tar.xz19tar xf $QEMUBASE.tar.xz
20PATH=$PWD/$QEMUBASE/bin:$PATH20PATH=$PWD/$QEMUBASE/bin:$PATH
2121
22WASMTIME="wasmtime-v0.15.0-x86_64-linux"22WASMTIME="wasmtime-v0.20.0-x86_64-linux"
23wget https://github.com/bytecodealliance/wasmtime/releases/download/v0.15.0/$WASMTIME.tar.xz23wget https://github.com/bytecodealliance/wasmtime/releases/download/v0.20.0/$WASMTIME.tar.xz
24tar xf $WASMTIME.tar.xz24tar xf $WASMTIME.tar.xz
25PATH=$PWD/$WASMTIME:$PATH25PATH=$PWD/$WASMTIME:$PATH
2626