aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRandy Reddig <[email protected]>2023-11-02 11:49:52 -0700
committerGitHub <[email protected]>2023-11-02 19:49:52 +0100
commit174d49235552381552c34bbe4a98d0a2ff6f046f (patch)
tree8c0329bb24703e2ce4e6f7157db66584c5b938a6 /.github
parent5355473dce94dd6112968ec2684ae2c5c077fa9a (diff)
downloadtinygo-174d49235552381552c34bbe4a98d0a2ff6f046f.tar.gz
tinygo-174d49235552381552c34bbe4a98d0a2ff6f046f.zip
compileopts, targets, main: support Wasmtime v14 (#3972)
compileopts, targets, main: support Wasmtime v14
Diffstat (limited to '.github')
-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 c9d75646e..01c7e273d 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/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/*
+ curl https://github.com/bytecodealliance/wasmtime/releases/download/v14.0.4/wasmtime-v14.0.4-x86_64-linux.tar.xz -o wasmtime-v14.0.4-x86_64-linux.tar.xz -SfL
+ tar -C $HOME/.wasmtime/bin --wildcards -xf wasmtime-v14.0.4-x86_64-linux.tar.xz --strip-components=1 wasmtime-v14.0.4-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/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/*
+ curl -L https://github.com/bytecodealliance/wasmtime/releases/download/v14.0.4/wasmtime-v14.0.4-x86_64-linux.tar.xz -o wasmtime-v14.0.4-x86_64-linux.tar.xz -SfL
+ tar -C $HOME/.wasmtime/bin --wildcards -xf wasmtime-v14.0.4-x86_64-linux.tar.xz --strip-components=1 wasmtime-v14.0.4-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 c4226c31f..e95415f87 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 [email protected]
+ 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 && scoop install [email protected]
+ scoop install binaryen && scoop install [email protected]
- name: Checkout
uses: actions/checkout@v3
- name: Install Go