Skip to content

Commit 1f53385

Browse files
committed
and yet another CI fix
Signed-off-by: Joel Dice <joel.dice@fermyon.com>
1 parent d4ba83a commit 1f53385

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ jobs:
7777
fail-fast: false
7878
matrix:
7979
config:
80-
- { os: "ubuntu-latest", wasiSDK: "linux" }
81-
- { os: "macos-latest", wasiSDK: "macos" }
82-
- { os: "windows-latest", wasiSDK: "mingw" }
80+
- { os: "ubuntu-latest", wasiSDK: "x86_64-linux" }
81+
- { os: "macos-latest", wasiSDK: "arm64-macos" }
82+
- { os: "windows-latest", wasiSDK: "x86_64-windows" }
8383
runs-on: ${{ matrix.config.os }}
8484
steps:
8585
- name: Checkout
@@ -111,18 +111,18 @@ jobs:
111111
shell: bash
112112
run: |
113113
cd /tmp
114-
curl -LO https://github.com/dicej/wasi-sdk/releases/download/${WASI_SDK_RELEASE}/wasi-sdk-${WASI_SDK_VERSION}-${{ matrix.config.wasiSDK }}.tar.gz
115-
tar xf wasi-sdk-${WASI_SDK_VERSION}-${{ matrix.config.wasiSDK }}.tar.gz
114+
curl -LO https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VERSION}/wasi-sdk-${WASI_SDK_VERSION}.0-${{ matrix.config.wasiSDK }}.tar.gz
115+
tar xf wasi-sdk-${WASI_SDK_VERSION}.0-${{ matrix.config.wasiSDK }}.tar.gz
116116
117117
- name: Install WASI-SDK
118118
if: runner.os != 'Windows'
119119
shell: bash
120-
run: sudo mv /tmp/wasi-sdk-${WASI_SDK_VERSION} /opt/wasi-sdk
120+
run: sudo mv /tmp/wasi-sdk-${WASI_SDK_VERSION}.0-${{ matrix.config.wasiSDK }} /opt/wasi-sdk
121121

122122
- name: Install WASI-SDK on Windows
123123
if: runner.os == 'Windows'
124124
shell: bash
125-
run: echo "WASI_SDK_PATH=$(cygpath -m /tmp/wasi-sdk-${WASI_SDK_VERSION})" >> ${GITHUB_ENV}
125+
run: echo "WASI_SDK_PATH=$(cygpath -m /tmp/wasi-sdk-${WASI_SDK_VERSION}.0-${{ matrix.config.wasiSDK }})" >> ${GITHUB_ENV}
126126

127127
- name: Restore CPython
128128
id: cache-cpython-wasi

0 commit comments

Comments
 (0)