diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2024-09-09 22:36:34 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2024-09-09 22:45:06 +0100 |
commit | c5846ba3cd13b64516e1dad0df73d5fb8cee9d60 (patch) | |
tree | 071d6def53802f159bc40cff9fed0422a4ec5b98 | |
parent | 9998918dbbc52c279b9c74cc34f6c67f6cdba1df (diff) | |
download | unit-c5846ba3cd13b64516e1dad0df73d5fb8cee9d60.tar.gz unit-c5846ba3cd13b64516e1dad0df73d5fb8cee9d60.tar.bz2 |
ci: Fix wasmtime paths in ci.yml
With commit 9998918db ("Packages: bump wasmtime to 24.0.0 and
wasi-sysroot to 24.0.") the paths to the wasmtime C API include and lib
directories changed which broke the wasm ci tests.
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47dd0af3..69691489 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -303,7 +303,7 @@ jobs: - name: Configure wasm run: | - ./configure wasm --include-path=pkg/contrib/wasmtime/crates/c-api/include --lib-path=pkg/contrib/wasmtime/target/release + ./configure wasm --include-path=pkg/contrib/wasmtime/artifacts/include --lib-path=pkg/contrib/wasmtime/artifacts/lib if: steps.metadata.outputs.module == 'wasm' - name: Make wasm |