Skip to content

Commit fd50227

Browse files
committed
build: pin wasmtime version used for testing to v13.0.0
Signed-off-by: deadprogram <ron@hybridgroup.com>
1 parent a902954 commit fd50227

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ jobs:
140140
- name: Install wasmtime
141141
run: |
142142
mkdir -p $HOME/.wasmtime $HOME/.wasmtime/bin
143-
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
144-
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/*
143+
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
144+
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/*
145145
echo "$HOME/.wasmtime/bin" >> $GITHUB_PATH
146146
- name: Download release artifact
147147
uses: actions/download-artifact@v3
@@ -187,8 +187,8 @@ jobs:
187187
- name: Install wasmtime
188188
run: |
189189
mkdir -p $HOME/.wasmtime $HOME/.wasmtime/bin
190-
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
191-
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/*
190+
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
191+
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/*
192192
echo "$HOME/.wasmtime/bin" >> $GITHUB_PATH
193193
- name: Restore LLVM source cache
194194
uses: actions/cache/restore@v3

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: make wasi-libc
9797
- name: Install wasmtime
9898
run: |
99-
scoop install wasmtime
99+
scoop install wasmtime@13.0.0
100100
- name: make gen-device
101101
run: make -j3 gen-device
102102
- name: Test TinyGo
@@ -203,7 +203,7 @@ jobs:
203203
- name: Install Dependencies
204204
shell: bash
205205
run: |
206-
scoop install binaryen wasmtime
206+
scoop install binaryen && scoop install wasmtime@13.0.0
207207
- name: Checkout
208208
uses: actions/checkout@v3
209209
- name: Install Go

0 commit comments

Comments
 (0)