mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 17:22:25 -05:00
Split codeql workflows into seperate files
This commit is contained in:
parent
9bc581d2f4
commit
420bd82dad
4 changed files with 361 additions and 309 deletions
309
.github/workflows/codeql.yml
vendored
309
.github/workflows/codeql.yml
vendored
|
@ -1,309 +0,0 @@
|
||||||
name: CodeQL
|
|
||||||
|
|
||||||
on:
|
|
||||||
|
|
||||||
push:
|
|
||||||
paths:
|
|
||||||
- src/**
|
|
||||||
- cmake/**
|
|
||||||
- "**/CMakeLists.txt"
|
|
||||||
- "CMakePresets.json"
|
|
||||||
- .github/workflows/codeql.yml
|
|
||||||
- vcpkg.json
|
|
||||||
- "!**/Makefile*"
|
|
||||||
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- src/**
|
|
||||||
- cmake/**
|
|
||||||
- "**/CMakeLists.txt"
|
|
||||||
- "CMakePresets.json"
|
|
||||||
- .github/workflows/**
|
|
||||||
- .github/workflows/codeql.yml
|
|
||||||
- vcpkg.json
|
|
||||||
- "!**/Makefile*"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
|
|
||||||
analyze-msys2:
|
|
||||||
|
|
||||||
name: "Analyze Windows MSYS2 (${{ matrix.ui.name }}, ${{ matrix.build.name }}, ${{ matrix.dynarec.name }}, ${{ matrix.environment.msystem }})"
|
|
||||||
|
|
||||||
runs-on: windows-2022
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
actions: read
|
|
||||||
contents: read
|
|
||||||
security-events: write
|
|
||||||
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
shell: msys2 {0}
|
|
||||||
|
|
||||||
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: Win32 GUI
|
|
||||||
qt: off
|
|
||||||
static: on
|
|
||||||
- name: Qt GUI
|
|
||||||
qt: on
|
|
||||||
static: off
|
|
||||||
slug: -Qt
|
|
||||||
packages: >-
|
|
||||||
qt5-base:p
|
|
||||||
qt5-tools:p
|
|
||||||
environment:
|
|
||||||
# - msystem: MSYS
|
|
||||||
# toolchain: ./cmake/flags-gcc-x86_64.cmake
|
|
||||||
- msystem: MINGW32
|
|
||||||
prefix: mingw-w64-i686
|
|
||||||
toolchain: ./cmake/flags-gcc-i686.cmake
|
|
||||||
- msystem: MINGW64
|
|
||||||
prefix: mingw-w64-x86_64
|
|
||||||
toolchain: ./cmake/flags-gcc-x86_64.cmake
|
|
||||||
# - msystem: CLANG32
|
|
||||||
# prefix: mingw-w64-clang-i686
|
|
||||||
# toolchain: ./cmake/llvm-win32-i686.cmake
|
|
||||||
# - msystem: CLANG64
|
|
||||||
# prefix: mingw-w64-clang-x86_64
|
|
||||||
# toolchain: ./cmake/llvm-win32-x86_64.cmake
|
|
||||||
- msystem: UCRT64
|
|
||||||
prefix: mingw-w64-ucrt-x86_64
|
|
||||||
toolchain: ./cmake/flags-gcc-x86_64.cmake
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Prepare MSYS2 environment
|
|
||||||
uses: msys2/setup-msys2@v2
|
|
||||||
with:
|
|
||||||
release: false
|
|
||||||
update: true
|
|
||||||
msystem: ${{ matrix.environment.msystem }}
|
|
||||||
pacboy: >-
|
|
||||||
ninja:p
|
|
||||||
cmake:p
|
|
||||||
gcc:p
|
|
||||||
pkgconf:p
|
|
||||||
freetype:p
|
|
||||||
SDL2:p
|
|
||||||
zlib:p
|
|
||||||
libpng:p
|
|
||||||
openal:p
|
|
||||||
rtmidi:p
|
|
||||||
libslirp:p
|
|
||||||
fluidsynth:p
|
|
||||||
libvncserver:p
|
|
||||||
${{ matrix.ui.packages }}
|
|
||||||
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v2
|
|
||||||
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 ${{ matrix.environment.toolchain }}
|
|
||||||
-D NEW_DYNAREC=${{ matrix.dynarec.new }}
|
|
||||||
-D CMAKE_INSTALL_PREFIX=./build/artifacts
|
|
||||||
-D QT=${{ matrix.ui.qt }}
|
|
||||||
-D STATIC_BUILD=${{ matrix.ui.static }}
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build build
|
|
||||||
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v2
|
|
||||||
with:
|
|
||||||
category: "/language:${{matrix.language}}"
|
|
||||||
|
|
||||||
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
|
|
||||||
libvncserver-dev
|
|
||||||
${{ matrix.ui.packages }}
|
|
||||||
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v2
|
|
||||||
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@v2
|
|
||||||
with:
|
|
||||||
category: "/language:${{matrix.language}}"
|
|
||||||
|
|
||||||
analyze-macos12:
|
|
||||||
|
|
||||||
name: "Analyze macOS 12 (${{ matrix.ui.name }}, ${{ matrix.build.name }}, ${{ matrix.dynarec.name }}, x86_64)"
|
|
||||||
|
|
||||||
runs-on: macos-12
|
|
||||||
|
|
||||||
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: >-
|
|
||||||
qt@5
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Install dependencies
|
|
||||||
run: >-
|
|
||||||
brew install
|
|
||||||
ninja
|
|
||||||
freetype
|
|
||||||
sdl2
|
|
||||||
libpng
|
|
||||||
rtmidi
|
|
||||||
openal-soft
|
|
||||||
fluidsynth
|
|
||||||
libvncserver
|
|
||||||
${{ matrix.ui.packages }}
|
|
||||||
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
|
||||||
uses: github/codeql-action/init@v2
|
|
||||||
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 }}
|
|
||||||
-D Qt5_ROOT=$(brew --prefix qt@5)
|
|
||||||
-D Qt5LinguistTools_ROOT=$(brew --prefix qt@5)
|
|
||||||
-D OpenAL_ROOT=$(brew --prefix openal-soft)
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: cmake --build build
|
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
|
||||||
uses: github/codeql-action/analyze@v2
|
|
||||||
with:
|
|
||||||
category: "/language:${{matrix.language}}"
|
|
112
.github/workflows/codeql_linux.yml
vendored
Normal file
112
.github/workflows/codeql_linux.yml
vendored
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
name: CodeQL Analasys (Linux)
|
||||||
|
|
||||||
|
on:
|
||||||
|
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- src/**
|
||||||
|
- cmake/**
|
||||||
|
- "**/CMakeLists.txt"
|
||||||
|
- "CMakePresets.json"
|
||||||
|
- .github/workflows/codeql.yml
|
||||||
|
- vcpkg.json
|
||||||
|
- "!**/Makefile*"
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- src/**
|
||||||
|
- cmake/**
|
||||||
|
- "**/CMakeLists.txt"
|
||||||
|
- "CMakePresets.json"
|
||||||
|
- .github/workflows/**
|
||||||
|
- .github/workflows/codeql.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
|
||||||
|
libvncserver-dev
|
||||||
|
${{ matrix.ui.packages }}
|
||||||
|
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v2
|
||||||
|
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@v2
|
||||||
|
with:
|
||||||
|
category: "/language:${{matrix.language}}"
|
108
.github/workflows/codeql_macos.yml
vendored
Normal file
108
.github/workflows/codeql_macos.yml
vendored
Normal file
|
@ -0,0 +1,108 @@
|
||||||
|
name: CodeQL Analasys (macos)
|
||||||
|
|
||||||
|
on:
|
||||||
|
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- src/**
|
||||||
|
- cmake/**
|
||||||
|
- "**/CMakeLists.txt"
|
||||||
|
- "CMakePresets.json"
|
||||||
|
- .github/workflows/codeql.yml
|
||||||
|
- vcpkg.json
|
||||||
|
- "!**/Makefile*"
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- src/**
|
||||||
|
- cmake/**
|
||||||
|
- "**/CMakeLists.txt"
|
||||||
|
- "CMakePresets.json"
|
||||||
|
- .github/workflows/**
|
||||||
|
- .github/workflows/codeql.yml
|
||||||
|
- vcpkg.json
|
||||||
|
- "!**/Makefile*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
analyze-macos12:
|
||||||
|
|
||||||
|
name: "${{ matrix.ui.name }}, ${{ matrix.build.name }}, ${{ matrix.dynarec.name }}, x86_64"
|
||||||
|
|
||||||
|
runs-on: macos-12
|
||||||
|
|
||||||
|
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: >-
|
||||||
|
qt@5
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: >-
|
||||||
|
brew install
|
||||||
|
ninja
|
||||||
|
freetype
|
||||||
|
sdl2
|
||||||
|
libpng
|
||||||
|
rtmidi
|
||||||
|
openal-soft
|
||||||
|
fluidsynth
|
||||||
|
libvncserver
|
||||||
|
${{ matrix.ui.packages }}
|
||||||
|
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v2
|
||||||
|
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 }}
|
||||||
|
-D Qt5_ROOT=$(brew --prefix qt@5)
|
||||||
|
-D Qt5LinguistTools_ROOT=$(brew --prefix qt@5)
|
||||||
|
-D OpenAL_ROOT=$(brew --prefix openal-soft)
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cmake --build build
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v2
|
||||||
|
with:
|
||||||
|
category: "/language:${{matrix.language}}"
|
141
.github/workflows/codeql_windows_msys2.yml
vendored
Normal file
141
.github/workflows/codeql_windows_msys2.yml
vendored
Normal file
|
@ -0,0 +1,141 @@
|
||||||
|
name: CodeQL Analasys (Windows, msys2)
|
||||||
|
|
||||||
|
on:
|
||||||
|
|
||||||
|
push:
|
||||||
|
paths:
|
||||||
|
- src/**
|
||||||
|
- cmake/**
|
||||||
|
- "**/CMakeLists.txt"
|
||||||
|
- "CMakePresets.json"
|
||||||
|
- .github/workflows/codeql.yml
|
||||||
|
- vcpkg.json
|
||||||
|
- "!**/Makefile*"
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- src/**
|
||||||
|
- cmake/**
|
||||||
|
- "**/CMakeLists.txt"
|
||||||
|
- "CMakePresets.json"
|
||||||
|
- .github/workflows/**
|
||||||
|
- .github/workflows/codeql.yml
|
||||||
|
- vcpkg.json
|
||||||
|
- "!**/Makefile*"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
analyze-msys2:
|
||||||
|
|
||||||
|
name: "${{ matrix.ui.name }}, ${{ matrix.build.name }}, ${{ matrix.dynarec.name }}, ${{ matrix.environment.msystem }}"
|
||||||
|
|
||||||
|
runs-on: windows-2022
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
actions: read
|
||||||
|
contents: read
|
||||||
|
security-events: write
|
||||||
|
|
||||||
|
defaults:
|
||||||
|
run:
|
||||||
|
shell: msys2 {0}
|
||||||
|
|
||||||
|
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: Win32 GUI
|
||||||
|
qt: off
|
||||||
|
static: on
|
||||||
|
- name: Qt GUI
|
||||||
|
qt: on
|
||||||
|
static: off
|
||||||
|
slug: -Qt
|
||||||
|
packages: >-
|
||||||
|
qt5-base:p
|
||||||
|
qt5-tools:p
|
||||||
|
environment:
|
||||||
|
# - msystem: MSYS
|
||||||
|
# toolchain: ./cmake/flags-gcc-x86_64.cmake
|
||||||
|
- msystem: MINGW32
|
||||||
|
prefix: mingw-w64-i686
|
||||||
|
toolchain: ./cmake/flags-gcc-i686.cmake
|
||||||
|
- msystem: MINGW64
|
||||||
|
prefix: mingw-w64-x86_64
|
||||||
|
toolchain: ./cmake/flags-gcc-x86_64.cmake
|
||||||
|
# - msystem: CLANG32
|
||||||
|
# prefix: mingw-w64-clang-i686
|
||||||
|
# toolchain: ./cmake/llvm-win32-i686.cmake
|
||||||
|
# - msystem: CLANG64
|
||||||
|
# prefix: mingw-w64-clang-x86_64
|
||||||
|
# toolchain: ./cmake/llvm-win32-x86_64.cmake
|
||||||
|
- msystem: UCRT64
|
||||||
|
prefix: mingw-w64-ucrt-x86_64
|
||||||
|
toolchain: ./cmake/flags-gcc-x86_64.cmake
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Prepare MSYS2 environment
|
||||||
|
uses: msys2/setup-msys2@v2
|
||||||
|
with:
|
||||||
|
release: false
|
||||||
|
update: true
|
||||||
|
msystem: ${{ matrix.environment.msystem }}
|
||||||
|
pacboy: >-
|
||||||
|
ninja:p
|
||||||
|
cmake:p
|
||||||
|
gcc:p
|
||||||
|
pkgconf:p
|
||||||
|
freetype:p
|
||||||
|
SDL2:p
|
||||||
|
zlib:p
|
||||||
|
libpng:p
|
||||||
|
openal:p
|
||||||
|
rtmidi:p
|
||||||
|
libslirp:p
|
||||||
|
fluidsynth:p
|
||||||
|
libvncserver:p
|
||||||
|
${{ matrix.ui.packages }}
|
||||||
|
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v2
|
||||||
|
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 ${{ matrix.environment.toolchain }}
|
||||||
|
-D NEW_DYNAREC=${{ matrix.dynarec.new }}
|
||||||
|
-D CMAKE_INSTALL_PREFIX=./build/artifacts
|
||||||
|
-D QT=${{ matrix.ui.qt }}
|
||||||
|
-D STATIC_BUILD=${{ matrix.ui.static }}
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cmake --build build
|
||||||
|
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v2
|
||||||
|
with:
|
||||||
|
category: "/language:${{matrix.language}}"
|
Loading…
Reference in a new issue