mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-26 12:21:39 +00:00
Build all presets
Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
This commit is contained in:
parent
4705ffddc2
commit
a83daf196c
1 changed files with 8 additions and 2 deletions
10
.github/workflows/validate.yml
vendored
10
.github/workflows/validate.yml
vendored
|
|
@ -14,9 +14,12 @@ jobs:
|
||||||
build-linux:
|
build-linux:
|
||||||
name: Build Linux
|
name: Build Linux
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
preset: ["linux-debug", "linux-release", "linux-relwithdebinfo"]
|
||||||
env:
|
env:
|
||||||
LLVM_VERSION: 18
|
LLVM_VERSION: 18
|
||||||
CMAKE_PRESET: linux-release
|
CMAKE_PRESET: ${{ matrix.preset }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
|
|
@ -78,8 +81,11 @@ jobs:
|
||||||
build-windows:
|
build-windows:
|
||||||
name: Build Windows
|
name: Build Windows
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
preset: ["x64-Clang-Debug", "x64-Clang-Release", "x64-Clang-RelWithDebInfo"]
|
||||||
env:
|
env:
|
||||||
CMAKE_PRESET: x64-Clang-Release
|
CMAKE_PRESET: ${{ matrix.preset }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue