Merge pull request #4586 from jriwanek-forks/scancodes #4
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
name: CodeQL Analysis (Linux) | |
on: | |
push: | |
paths: | |
- src/** | |
- cmake/** | |
- "**/CMakeLists.txt" | |
- "CMakePresets.json" | |
- .github/workflows/codeql_linux.yml | |
- vcpkg.json | |
- "!**/Makefile*" | |
pull_request: | |
paths: | |
- src/** | |
- cmake/** | |
- "**/CMakeLists.txt" | |
- "CMakePresets.json" | |
- .github/workflows/** | |
- .github/workflows/codeql_linux.yml | |
- vcpkg.json | |
- "!**/Makefile*" | |
jobs: | |
analyze-linux: | |
name: "Analyze Linux GCC 11 (${{ matrix.ui.name }}, ${{ matrix.build.name }}, ${{ matrix.dynarec.name }}, x86_64)" | |
runs-on: ubuntu-22.04 | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: true | |
matrix: | |
language: [ 'cpp' ] | |
build: | |
# - name: Regular | |
# preset: regular | |
# - name: Debug | |
# preset: debug | |
# slug: -Debug | |
- name: Dev | |
preset: experimental | |
slug: -Dev | |
dynarec: | |
- name: ODR | |
new: off | |
slug: -ODR | |
- name: NDR | |
new: on | |
slug: -NDR | |
ui: | |
- name: SDL GUI | |
qt: off | |
- name: Qt GUI | |
qt: on | |
slug: -Qt | |
packages: >- | |
qtbase5-dev | |
qtbase5-private-dev | |
qttools5-dev | |
libevdev-dev | |
libxkbcommon-x11-dev | |
steps: | |
- name: Install dependencies | |
run: >- | |
sudo apt update && sudo apt install | |
build-essential | |
ninja-build | |
libfreetype-dev | |
libsdl2-dev | |
libpng-dev | |
libc6-dev | |
librtmidi-dev | |
libopenal-dev | |
libslirp-dev | |
libfluidsynth-dev | |
${{ matrix.ui.packages }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
config-file: ./.github/codeql/codeql-config.yml | |
- name: Configure CMake | |
run: >- | |
cmake -G Ninja -S . -B build --preset ${{ matrix.build.preset }} | |
--toolchain ./cmake/flags-gcc-x86_64.cmake | |
-D NEW_DYNAREC=${{ matrix.dynarec.new }} | |
-D CMAKE_INSTALL_PREFIX=./build/artifacts | |
-D QT=${{ matrix.ui.qt }} | |
- name: Build | |
run: cmake --build build | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |