Skip to content

Workflow file for this run

name: "Clang AST"
on:
push:
branches: master
paths:
- configure
- 'auto/**'
- 'src/**'
- 'test/**'
- '.github/workflows/clang-ast.yaml'
pull_request:
branches: master
paths:
- configure
- 'auto/**'
- 'src/**'
- 'test/**'
- '.github/workflows/clang-ast.yaml'
jobs:
clang-ast:
runs-on: ubuntu-latest
container:
image: debian:testing
steps:
- name: Install tools/deps
run: |
apt-get -y update
apt-get -y install git llvm-dev libclang-dev clang make \
libssl-dev libpcre2-dev
- uses: actions/checkout@v4
- name: Checkout and build clang-ast
run: |
git clone https://github.com/nginx/clang-ast.git -b unit
cd clang-ast
make
- name: Configure Unit
run: ./configure --cc=clang --openssl --debug --tests \
--cc-opt="-Xclang -load -Xclang clang-ast/ngx-ast.so -Xclang -add-plugin -Xclang ngx-ast"
- name: Build Unit
run: make -j4 NXT_SHARED_LOCAL_LINK=: build/lib/libnxt.so

Check failure on line 48 in .github/workflows/clang-ast.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/clang-ast.yaml

Invalid workflow file

You have an error in your yaml syntax on line 48
- name: Build C tests
run: make -j4 tests