Skip to content
This repository was archived by the owner on Oct 8, 2025. It is now read-only.

Commit 3b2d79d

Browse files
committed
ci: clang-ast wasm
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
1 parent b7e04de commit 3b2d79d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/clang-ast.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install tools/deps
3030
run: |
3131
apt-get -y update
32-
apt-get -y install git llvm-dev libclang-dev clang make \
32+
apt-get -y install git wget curl llvm-dev libclang-dev clang make \
3333
libssl-dev libpcre2-dev libperl-dev \
3434
libphp-embed php-dev python3-dev libpython3-dev \
3535
ruby-dev openjdk-17-jdk npm
@@ -76,3 +76,8 @@ jobs:
7676

7777
- name: Build Nodejs support
7878
run: ./configure nodejs && make node-local-install DESTDIR=node V=1
79+
80+
- name: Build wasm language module
81+
run: |
82+
wget -q -O- https://github.com/bytecodealliance/wasmtime/releases/download/v26.0.0/wasmtime-v26.0.0-x86_64-linux-c-api.tar.xz | tar -xJf -
83+
./configure wasm --include-path=wasmtime-v26.0.0-x86_64-linux-c-api/include --lib-path=wasmtime-v26.0.0-x86_64-linux-c-api/lib --rpath && make wasm V=1

0 commit comments

Comments
 (0)