Skip to content

Commit ca75f66

Browse files
authored
Add WASI SDK 25 (#60)
1 parent 4975cde commit ca75f66

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

wasicontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ARG TARGETARCH
1111
# WASI SDK versions are controlled in install-wasi.sh.
1212
ENV WASI_SDK_ROOT=/opt
1313

14-
ENV WASMTIME_VERSION=36.0.2
14+
ENV WASMTIME_VERSION=38.0.2
1515
ENV WASMTIME_HOME=/opt/wasmtime
1616

1717
RUN mkdir -p /opt/cpython-devcontainer/bin

wasicontainer/install-wasi.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ case "${TARGETARCH}" in
1616
esac && \
1717

1818
# 24: 3.13, 3.14
19+
# 25: 3.15
1920
# The URL format only works for WASI SDK >= 23.
20-
WASI_SDK_VERSIONS=(24)
21+
WASI_SDK_VERSIONS=(24 25)
2122
for VERSION in "${WASI_SDK_VERSIONS[@]}"; do
2223
URL=https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${VERSION}/wasi-sdk-${VERSION}.0-${WASI_ARCH}-linux.tar.gz
2324
curl --location $URL | tar --directory ${WASI_SDK_ROOT} --extract --gunzip

0 commit comments

Comments
 (0)