We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b19af84 commit 6616b14Copy full SHA for 6616b14
wasicontainer/install-wasi.sh
@@ -15,11 +15,12 @@ case "${TARGETARCH}" in
15
*) echo "Unsupported TARGETARCH: ${TARGETARCH}" && exit 1 ;;
16
esac && \
17
18
-# 24: 3.13, 3.14
19
-# 25: 3.15
20
-# The URL format only works for WASI SDK >= 23.
21
-WASI_SDK_VERSIONS=(24 25)
+WASI_SDK_VERSIONS=(
+ 24 # 3.13, 3.14
+ 29 # 3.15
+)
22
for VERSION in "${WASI_SDK_VERSIONS[@]}"; do
23
+ # The URL format only works for WASI SDK >= 23.
24
URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${VERSION}/wasi-sdk-${VERSION}.0-${WASI_ARCH}-linux.tar.gz
25
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip
26
done
0 commit comments