-
Notifications
You must be signed in to change notification settings - Fork 208
54 lines (45 loc) · 1.27 KB
/
codeql.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: CodeQL
on:
# Only trigger this workflow for the 5.x branch
push:
branches: [ '5.x' ]
pull_request:
branches: [ '5.x' ]
schedule:
- cron: '21 3 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-24.04
permissions:
# required for all workflows
security-events: write
# required to fetch internal or private CodeQL packs
packages: read
# only required for workflows in private repositories
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: c-cpp
build-mode: manual
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install --no-install-recommends libvips-dev
- name: Build
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release \
-DCUSTOM_NGX_FLAGS="--prefix=$HOME/nginx" \
-DBUILD_TESTS=OFF
cmake --build build -- -j$(nproc)
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:c-cpp'