aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authordeadprogram <[email protected]>2023-10-24 08:07:38 +0200
committerRon Evans <[email protected]>2023-10-24 13:10:09 +0200
commitfd50227a3d2049ec1ba490a727ef54fc4c36179d (patch)
tree47690e88caa851a4ea5a499f5333f07c2c7d12d3 /.github/workflows
parenta90295430cd8a25e357a2c3126f70876f3cd9e1f (diff)
downloadtinygo-fd50227a3d2049ec1ba490a727ef54fc4c36179d.tar.gz
tinygo-fd50227a3d2049ec1ba490a727ef54fc4c36179d.zip
build: pin wasmtime version used for testing to v13.0.0
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/linux.yml8
-rw-r--r--.github/workflows/windows.yml4
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index b8cc923ee..c9d75646e 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -140,8 +140,8 @@ jobs:
- name: Install wasmtime
run: |
mkdir -p $HOME/.wasmtime $HOME/.wasmtime/bin
- curl https://github.com/bytecodealliance/wasmtime/releases/download/v5.0.0/wasmtime-v5.0.0-x86_64-linux.tar.xz -o wasmtime-v5.0.0-x86_64-linux.tar.xz -SfL
- tar -C $HOME/.wasmtime/bin --wildcards -xf wasmtime-v5.0.0-x86_64-linux.tar.xz --strip-components=1 wasmtime-v5.0.0-x86_64-linux/*
+ curl https://github.com/bytecodealliance/wasmtime/releases/download/v13.0.0/wasmtime-v13.0.0-x86_64-linux.tar.xz -o wasmtime-v13.0.0-x86_64-linux.tar.xz -SfL
+ tar -C $HOME/.wasmtime/bin --wildcards -xf wasmtime-v13.0.0-x86_64-linux.tar.xz --strip-components=1 wasmtime-v13.0.0-x86_64-linux/*
echo "$HOME/.wasmtime/bin" >> $GITHUB_PATH
- name: Download release artifact
uses: actions/download-artifact@v3
@@ -187,8 +187,8 @@ jobs:
- name: Install wasmtime
run: |
mkdir -p $HOME/.wasmtime $HOME/.wasmtime/bin
- curl -L https://github.com/bytecodealliance/wasmtime/releases/download/v5.0.0/wasmtime-v5.0.0-x86_64-linux.tar.xz -o wasmtime-v5.0.0-x86_64-linux.tar.xz -SfL
- tar -C $HOME/.wasmtime/bin --wildcards -xf wasmtime-v5.0.0-x86_64-linux.tar.xz --strip-components=1 wasmtime-v5.0.0-x86_64-linux/*
+ curl -L https://github.com/bytecodealliance/wasmtime/releases/download/v13.0.0/wasmtime-v13.0.0-x86_64-linux.tar.xz -o wasmtime-v13.0.0-x86_64-linux.tar.xz -SfL
+ tar -C $HOME/.wasmtime/bin --wildcards -xf wasmtime-v13.0.0-x86_64-linux.tar.xz --strip-components=1 wasmtime-v13.0.0-x86_64-linux/*
echo "$HOME/.wasmtime/bin" >> $GITHUB_PATH
- name: Restore LLVM source cache
uses: actions/cache/restore@v3
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index 390672fa3..c4226c31f 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -96,7 +96,7 @@ jobs:
run: make wasi-libc
- name: Install wasmtime
run: |
- scoop install wasmtime
+ scoop install [email protected]
- name: make gen-device
run: make -j3 gen-device
- name: Test TinyGo
@@ -203,7 +203,7 @@ jobs:
- name: Install Dependencies
shell: bash
run: |
- scoop install binaryen wasmtime
+ scoop install binaryen && scoop install [email protected]
- name: Checkout
uses: actions/checkout@v3
- name: Install Go