Skip to content

Commit

Permalink
CI: bump wasmtime to 16.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Dec 21, 2023
1 parent d47a38e commit 9b2dc5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/wasmtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ jobs:
- name: Install wasmtime (ubuntu)
if: startsWith(matrix.os, 'ubuntu-')
run: |
curl -O -L https://github.com/bytecodealliance/wasmtime/releases/download/v15.0.1/wasmtime-v15.0.1-x86_64-linux.tar.xz
tar xvJf wasmtime-v15.0.1-x86_64-linux.tar.xz
echo "WASMTIME=$(pwd -P)/wasmtime-v15.0.1-x86_64-linux/wasmtime" >> ${GITHUB_ENV}
curl -O -L https://github.com/bytecodealliance/wasmtime/releases/download/v16.0.0/wasmtime-v16.0.0-x86_64-linux.tar.xz
tar xvJf wasmtime-v16.0.0-x86_64-linux.tar.xz
echo "WASMTIME=$(pwd -P)/wasmtime-v16.0.0-x86_64-linux/wasmtime" >> ${GITHUB_ENV}
- name: Install wasmtime (macOS)
if: startsWith(matrix.os, 'macos-')
run: |
curl -O -L https://github.com/bytecodealliance/wasmtime/releases/download/v15.0.1/wasmtime-v15.0.1-x86_64-macos.tar.xz
tar xvzf wasmtime-v15.0.1-x86_64-macos.tar.xz
echo "WASMTIME=$(pwd -P)/wasmtime-v15.0.1-x86_64-macos/wasmtime" >> ${GITHUB_ENV}
curl -O -L https://github.com/bytecodealliance/wasmtime/releases/download/v16.0.0/wasmtime-v16.0.0-x86_64-macos.tar.xz
tar xvzf wasmtime-v16.0.0-x86_64-macos.tar.xz
echo "WASMTIME=$(pwd -P)/wasmtime-v16.0.0-x86_64-macos/wasmtime" >> ${GITHUB_ENV}
- name: Build guest (Rust)
run: |
Expand Down

0 comments on commit 9b2dc5d

Please sign in to comment.