2022-03-07 22:42:47 -05:00
|
|
|
name: "CodeQL scan"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 17 * * 2"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
CodeQL-Build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-02-19 18:23:53 -05:00
|
|
|
uses: actions/checkout@v3
|
2022-03-07 22:42:47 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2023-02-19 18:23:53 -05:00
|
|
|
uses: github/codeql-action/init@v2
|
2022-03-07 22:42:47 -05:00
|
|
|
with:
|
|
|
|
languages: cpp
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
./autogen.sh -s
|
|
|
|
env CPPFLAGS="-DDEV_MODE=1" ./configure --disable-dependency-tracking
|
|
|
|
make -j $(nproc) check
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2023-02-19 18:23:53 -05:00
|
|
|
uses: github/codeql-action/analyze@v2
|