forked from mbert/mulberry-main
-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (50 loc) · 1.37 KB
/
Copy pathcodeql.yml
File metadata and controls
57 lines (50 loc) · 1.37 KB
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
55
56
57
name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '17 4 * * 1'
jobs:
analyze:
name: Analyze (C/C++)
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
with:
submodules: recursive
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential autoconf \
libaspell-dev libbrotli-dev libfl-dev libfontconfig-dev \
libfreetype-dev libglib2.0-dev libkrb5-dev libldap-dev \
libpcre3-dev libsodium-dev libssl-dev libunistring-dev libxml2-dev \
libx11-dev libxext-dev libxft-dev libxpm-dev libzstd-dev \
pkg-config python3 unicode-cldr-core zlib1g-dev
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: c-cpp
build-mode: manual
config: |
paths-ignore:
- Libraries/JX
- Libraries/vendor
- Libraries/vzic
- Libraries/include
- Libraries/openssl
- name: Build
run: |
autoconf
./configure
make -j$(nproc)
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:c-cpp"