Skip to content

Commit

Permalink
Merge GH #3663 Add CodeQL
Browse files Browse the repository at this point in the history
  • Loading branch information
randombit committed Aug 10, 2023
2 parents ee20e4a + 55bb3cd commit 8c72bab
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: "CodeQL"

on:
push:
branches: ["master"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["master"]
schedule:
# runs every day at 4:23 AM UTC
- cron: "23 4 * * *"

permissions:
contents: read

jobs:
codeql_cpp:
name: C++
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Build Agent
uses: ./.github/actions/setup-build-agent
with:
target: codeql
cache-key: linux-gcc-x86_64-codeql

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: cpp
config-file: ./src/configs/codeql.yml

- name: Build Library
run: ./src/scripts/ci_build.py codeql

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: cpp

codeql_py:
name: Python
runs-on: ubuntu-22.04
permissions:
actions: read
contents: read
security-events: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: python
config-file: ./src/configs/codeql.yml

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: python
8 changes: 8 additions & 0 deletions src/configs/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

query-filters:
- exclude:
id: cpp/fixme-comment
- exclude:
id: cpp/weak-cryptographic-algorithm
- exclude:
id: py/clear-text-logging-sensitive-data
4 changes: 4 additions & 0 deletions src/scripts/ci_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def known_targets():
return [
'amalgamation',
'bsi',
'codeql',
'coverage',
'cross-android-arm32',
'cross-android-arm64',
Expand Down Expand Up @@ -169,6 +170,9 @@ def sanitize_kv(some_string):
flags += ['--with-doxygen', '--with-sphinx', '--with-rst2man']
test_cmd = None

if target == 'codeql':
test_cmd = None

if target == 'cross-win64':
# this test compiles under MinGW but fails when run under Wine
disabled_tests.append('certstor_system')
Expand Down

0 comments on commit 8c72bab

Please sign in to comment.