diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-09-08 16:03:19 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-09-08 16:05:13 +0100 |
commit | ef3227529fef94f74b8863f212b6b02a82c5f686 (patch) | |
tree | 4a3328ffe5f12490eb052f6cc392d07da6380d99 /.github | |
parent | 31201031b4420b471d05b0b2b92c249e3feeb8f2 (diff) | |
download | unit-wasm-ef3227529fef94f74b8863f212b6b02a82c5f686.tar.gz unit-wasm-ef3227529fef94f74b8863f212b6b02a82c5f686.tar.bz2 |
README.md: We need to install wasi-libc on Debian
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_tests.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build_tests.yaml b/.github/workflows/build_tests.yaml index b83753c..30e5cb8 100644 --- a/.github/workflows/build_tests.yaml +++ b/.github/workflows/build_tests.yaml @@ -56,7 +56,7 @@ jobs: curl https://sh.rustup.rs -sSf | sh -s -- -y . "$HOME/.cargo/env" rustup target add wasm32-wasi - wget -O- https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sysroot-20.0.tar.gz | tar -xvzf - -C ${RUNNER_TEMP} + wget -O- https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-20/wasi-sysroot-20.0.tar.gz | tar -xzf - -C ${RUNNER_TEMP} - uses: actions/checkout@v3 with: |