diff options
author | Brett Cannon <brett@python.org> | 2024-11-07 21:40:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-07 21:40:56 (GMT) |
commit | bbe9b21d06c192a616bc1720ec8f7d4ccc16cab8 (patch) | |
tree | 63c33621f4828461ae2da9e49dab4b9379dc22a8 /.github | |
parent | 1f777396f52a4cf7417f56097f10add8042295f4 (diff) | |
download | cpython-bbe9b21d06c192a616bc1720ec8f7d4ccc16cab8.zip cpython-bbe9b21d06c192a616bc1720ec8f7d4ccc16cab8.tar.gz cpython-bbe9b21d06c192a616bc1720ec8f7d4ccc16cab8.tar.bz2 |
GH-123877: default to `wasm32-wasip1` instead of `wasm32-wasi` to be more specific (GH-126552)
Eventually wasm32-wasi will represent WASI 1.0, and so it's currently deprecated so it can be used for that eventual purpose. wasm32-wasip1 is also more specific to what version of WASI is currently supported.
---------
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
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 85af793..3f96c88 100644 --- a/.github/workflows/reusable-wasi.yml +++ b/.github/workflows/reusable-wasi.yml @@ -17,7 +17,7 @@ jobs: WASI_SDK_VERSION: 24 WASI_SDK_PATH: /opt/wasi-sdk CROSS_BUILD_PYTHON: cross-build/build - CROSS_BUILD_WASI: cross-build/wasm32-wasi + CROSS_BUILD_WASI: cross-build/wasm32-wasip1 steps: - uses: actions/checkout@v4 # No problem resolver registered as one doesn't currently exist for Clang. @@ -31,7 +31,7 @@ jobs: with: path: ${{ env.WASI_SDK_PATH }} key: ${{ runner.os }}-wasi-sdk-${{ env.WASI_SDK_VERSION }} - - name: "Install WASI SDK" + - name: "Install WASI SDK" # Hard-coded to x64. if: steps.cache-wasi-sdk.outputs.cache-hit != 'true' run: | mkdir ${{ env.WASI_SDK_PATH }} && \ |