forked from PowerDNS/pdns
-
Notifications
You must be signed in to change notification settings - Fork 0
129 lines (114 loc) · 4.44 KB
/
codeql-analysis.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: "CodeQL"
on:
push:
pull_request:
schedule:
- cron: '0 22 * * 2'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
# Override automatic language detection by changing the below list
# Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
language: ['cpp']
product: ['auth', 'rec', 'dnsdist']
# Learn more...
# https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
# Python is required for building the Authoritative server
- uses: actions/setup-python@v2
with:
python-version: '3.8'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
# TODO: go through +security-and-quality (400 alerts) once, then see if we can upgrade to it
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
# - name: Autobuild
# uses: github/codeql-action/autobuild@v1
# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
- name: Update repository metadata
run: |
sudo apt-get update
- name: Install dependencies
run: |
sudo apt-get -qq -y --no-install-recommends install \
bison \
default-libmysqlclient-dev \
flex \
libboost-all-dev \
libcap-dev \
libcdb-dev \
libcurl4-openssl-dev \
libedit-dev \
libfstrm-dev \
libgeoip-dev \
libgnutls28-dev \
libh2o-evloop-dev \
libkrb5-dev \
libldap2-dev \
liblmdb-dev \
liblua5.3-dev \
libmaxminddb-dev \
libnghttp2-dev \
libp11-kit-dev \
libpq-dev \
libre2-dev \
libsnmp-dev \
libsodium-dev \
libsqlite3-dev \
libssl-dev \
libsystemd-dev \
libwslay-dev \
libyaml-cpp-dev \
ragel \
unixodbc-dev
- name: Build auth
if: matrix.product == 'auth'
run: |
autoreconf -vfi
./configure --with-modules='bind geoip gmysql godbc gpgsql gsqlite3 ldap lmdb lua2 pipe remote tinydns' --enable-tools --enable-ixfrdist --enable-dns-over-tls --enable-experimental-pkcs11 --with-libsodium --enable-lua-records CFLAGS='-O0' CXXFLAGS='-O0'
make -j8 -C ext
make -j8 -C modules
make -j8 -C pdns
- name: Build dnsdist
if: matrix.product == 'dnsdist'
run: |
cd pdns/dnsdistdist
autoreconf -vfi
./configure --enable-unit-tests --enable-dnstap --enable-dnscrypt --enable-dns-over-tls --enable-dns-over-https LIBS=-lwslay CFLAGS='-O0' CXXFLAGS='-O0'
make -j8 -C ext/ipcrypt
make -j8 -C ext/yahttp
make -j4 dnsdist
- name: Build recursor
if: matrix.product == 'rec'
run: |
cd pdns/recursordist
autoreconf -vfi
./configure --enable-unit-tests --enable-nod --enable-dnstap CFLAGS='-O0' CXXFLAGS='-O0'
make -j8 -C ext
make htmlfiles.h
make -j8 pdns_recursor rec_control
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1