diff options
author | Brett Cannon <brett@python.org> | 2024-08-12 23:21:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-12 23:21:00 (GMT) |
commit | 0e207f3e7adc6a0fdbe1482ce01163ff04d5ddcb (patch) | |
tree | de73ec8b39bbd95a2d03d35d43ed8d00d69b4426 /.github | |
parent | 9621a7d0170bf1ec48bcfc35825007cdf75265ea (diff) | |
download | cpython-0e207f3e7adc6a0fdbe1482ce01163ff04d5ddcb.zip cpython-0e207f3e7adc6a0fdbe1482ce01163ff04d5ddcb.tar.gz cpython-0e207f3e7adc6a0fdbe1482ce01163ff04d5ddcb.tar.bz2 |
GH-122578: update to WASI SDK 24 (GH-122960)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reusable-wasi.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/reusable-wasi.yml b/.github/workflows/reusable-wasi.yml index ffa143b..1b1a68c 100644 --- a/.github/workflows/reusable-wasi.yml +++ b/.github/workflows/reusable-wasi.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 env: WASMTIME_VERSION: 22.0.0 - WASI_SDK_VERSION: 22 + WASI_SDK_VERSION: 24 WASI_SDK_PATH: /opt/wasi-sdk CROSS_BUILD_PYTHON: cross-build/build CROSS_BUILD_WASI: cross-build/wasm32-wasi @@ -33,7 +33,7 @@ jobs: if: steps.cache-wasi-sdk.outputs.cache-hit != 'true' run: | mkdir ${{ env.WASI_SDK_PATH }} && \ - curl -s -S --location https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${{ env.WASI_SDK_VERSION }}/wasi-sdk-${{ env.WASI_SDK_VERSION }}.0-linux.tar.gz | \ + curl -s -S --location https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${{ env.WASI_SDK_VERSION }}/wasi-sdk-${{ env.WASI_SDK_VERSION }}.0-x86_64-linux.tar.gz | \ tar --strip-components 1 --directory ${{ env.WASI_SDK_PATH }} --extract --gunzip - name: "Configure ccache action" uses: hendrikmuhs/ccache-action@v1.2 |