-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: add codeql for security scan (#219)
Signed-off-by: msclock <[email protected]>
- Loading branch information
Showing
7 changed files
with
222 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: CodeQL config | ||
|
||
query-filters: | ||
- exclude: | ||
id: cpp/commented-out-code | ||
- exclude: | ||
id: cpp/include-non-header | ||
- exclude: | ||
id: cpp/loop-variable-changed | ||
- exclude: | ||
id: cpp/useless-expression |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [master] | ||
schedule: | ||
- cron: 15 4 * * 3 | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 15 | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [cpp] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | ||
# Learn more about CodeQL language support at https://git.io/codeql-language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 | ||
with: | ||
languages: ${{ matrix.language }} | ||
config-file: ./.github/codeql-config.yml | ||
|
||
- name: Cache | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | ||
with: | ||
path: | | ||
~/vcpkg | ||
~/.cache/vcpkg | ||
key: x64-linux-gcc-13-${{ hashFiles('vcpkg.json') }} | ||
restore-keys: x64-linux-gcc-13-${{ hashFiles('vcpkg.json') }} | ||
|
||
- uses: aminya/setup-cpp@v1 | ||
with: | ||
compiler: gcc-13 | ||
cmake: true | ||
ninja: true | ||
ccache: true | ||
|
||
- name: Configure CMake | ||
run: > | ||
cmake -S . --preset=default | ||
-DCMAKE_BUILD_TYPE=DebWithRelInfo | ||
-DCMAKE_CXX_STANDARD=20 | ||
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON | ||
-DVCPKG_TARGET_TRIPLET=x64-linux | ||
-DUSE_SANITIZER=OFF | ||
-DCODE_COVERAGE=OFF | ||
-DBUILD_TESTING=ON | ||
- name: Build | ||
run: cmake --build --preset=default --target all | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...'github.com' %].github[% endif %]/[% if use_codeql == true %]codeql-config.yml[% endif %]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: CodeQL config | ||
|
||
query-filters: | ||
- exclude: | ||
id: cpp/commented-out-code | ||
- exclude: | ||
id: cpp/include-non-header | ||
- exclude: | ||
id: cpp/loop-variable-changed | ||
- exclude: | ||
id: cpp/useless-expression |
89 changes: 89 additions & 0 deletions
89
...om' %].github[% endif %]/workflows/[% if use_codeql == true %]codeql.yml[% endif %].jinja
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [master] | ||
schedule: | ||
- cron: 15 4 * * 3 | ||
|
||
concurrency: | ||
group: {{ '${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}' }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 15 | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [cpp] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | ||
# Learn more about CodeQL language support at https://git.io/codeql-language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 | ||
with: | ||
languages: {{ '${{ matrix.language }}' }} | ||
config-file: ./.github/codeql-config.yml | ||
|
||
- name: Cache | ||
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | ||
with: | ||
path: | | ||
~/vcpkg | ||
~/.cache/vcpkg | ||
key: x64-linux-gcc-13-{{ '${{ hashFiles(\'vcpkg.json\') }}' }} | ||
restore-keys: x64-linux-gcc-13-{{ '${{ hashFiles(\'vcpkg.json\') }}' }} | ||
|
||
- uses: aminya/setup-cpp@v1 | ||
with: | ||
compiler: gcc-13 | ||
cmake: true | ||
ninja: true | ||
ccache: true | ||
|
||
- name: Configure CMake | ||
run: > | ||
cmake -S . --preset=default | ||
-DCMAKE_BUILD_TYPE=DebWithRelInfo | ||
-DCMAKE_CXX_STANDARD=20 | ||
-DCMAKE_COMPILE_WARNING_AS_ERROR=ON | ||
-DVCPKG_TARGET_TRIPLET=x64-linux | ||
-DUSE_SANITIZER=OFF | ||
-DCODE_COVERAGE=OFF | ||
-DBUILD_TESTING=ON | ||
|
||
- name: Build | ||
run: cmake --build --preset=default --target all | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@1b1aada464948af03b950897e5eb522f92603cc2 # v3.24.9 |