From bb14bd35bd8e7c92d5d1662be391226c4a37fd24 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 3 Nov 2020 23:21:15 +0100 Subject: [PATCH] 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. --- ci/azure/linux_script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/azure/linux_script b/ci/azure/linux_script index a5571ee76..3daebe7a2 100755 --- a/ci/azure/linux_script +++ b/ci/azure/linux_script @@ -19,8 +19,8 @@ wget https://ziglang.org/deps/$QEMUBASE.tar.xz tar xf $QEMUBASE.tar.xz PATH=$PWD/$QEMUBASE/bin:$PATH -WASMTIME="wasmtime-v0.15.0-x86_64-linux" -wget https://github.com/bytecodealliance/wasmtime/releases/download/v0.15.0/$WASMTIME.tar.xz +WASMTIME="wasmtime-v0.20.0-x86_64-linux" +wget https://github.com/bytecodealliance/wasmtime/releases/download/v0.20.0/$WASMTIME.tar.xz tar xf $WASMTIME.tar.xz PATH=$PWD/$WASMTIME:$PATH