summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuta Saito <kateinoigakukun@gmail.com>2025-02-18 10:30:17 +0000
committerYuta Saito <kateinoigakukun@gmail.com>2025-02-19 13:54:51 +0900
commitbd84c75a013042f4feefa4616ab119394b3bbf24 (patch)
treecf17571a439adada30cc9a0490ac68cfe1b0908b
parenteac35edfd1101e8f7c34dbdd7b595fdac8f0ad4c (diff)
[wasm] Update WASI SDK to 25
to include WASI Preview 2 related changes added in the SDK.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/12772
-rw-r--r--.github/workflows/wasm.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml
index d7e316c3dc..f5c8ca62d1 100644
--- a/.github/workflows/wasm.yml
+++ b/.github/workflows/wasm.yml
@@ -43,7 +43,7 @@ jobs:
env:
RUBY_TESTOPTS: '-q --tty=no'
GITPULLOPTIONS: --no-tags origin ${{ github.ref }}
- WASI_SDK_VERSION_MAJOR: 20
+ WASI_SDK_VERSION_MAJOR: 25
WASI_SDK_VERSION_MINOR: 0
BINARYEN_VERSION: 113
WASMTIME_VERSION: v15.0.0
@@ -78,7 +78,7 @@ jobs:
sudo apt-get update -q || :
sudo apt-get install --no-install-recommends -q -y ruby make autoconf git wget
- wasi_sdk_deb="wasi-sdk_${WASI_SDK_VERSION_MAJOR}.${WASI_SDK_VERSION_MINOR}_amd64.deb"
+ wasi_sdk_deb="wasi-sdk-${WASI_SDK_VERSION_MAJOR}.${WASI_SDK_VERSION_MINOR}-x86_64-linux.deb"
wget "https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VERSION_MAJOR}/${wasi_sdk_deb}"
sudo dpkg -i "$wasi_sdk_deb"
rm -f "$wasi_sdk_deb"