Skip to content

Commit 6616b14

Browse files
authored
Swap out WASI SDK 25 for 29 (#63)
python/cpython@9b69a55
1 parent b19af84 commit 6616b14

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

wasicontainer/install-wasi.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ case "${TARGETARCH}" in
1515
*) echo "Unsupported TARGETARCH: ${TARGETARCH}" && exit 1 ;;
1616
esac && \
1717

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)
18+
WASI_SDK_VERSIONS=(
19+
24 # 3.13, 3.14
20+
29 # 3.15
21+
)
2222
for VERSION in "${WASI_SDK_VERSIONS[@]}"; do
23+
# The URL format only works for WASI SDK >= 23.
2324
URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${VERSION}/wasi-sdk-${VERSION}.0-${WASI_ARCH}-linux.tar.gz
2425
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip
2526
done

0 commit comments

Comments
 (0)