From 14510f412dcc045909f1c49a01d661343e07acaf Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Tue, 12 May 2020 23:15:54 +0200 Subject: [PATCH] Download and unpack wasmtime on Linux --- ci/azure/linux_script | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/azure/linux_script b/ci/azure/linux_script index 2a5d2ef1a8..9dff294583 100755 --- a/ci/azure/linux_script +++ b/ci/azure/linux_script @@ -19,6 +19,11 @@ 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 +tar xf $WASMTIME.tar.xz +PATH=$PWD/$WASMTIME:$PATH + # Make the `zig version` number consistent. # This will affect the cmake command below. git config core.abbrev 9