-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minimum supported is CMake version 3.16 now Drop fmt 5 support with debian 10
- Loading branch information
1 parent
4339d51
commit 0b64671
Showing
3 changed files
with
21 additions
and
27 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 |
---|---|---|
|
@@ -9,6 +9,10 @@ on: | |
description: Git Ref (Optional) | ||
required: false | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
@@ -24,15 +28,12 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
image: | ||
- debian:10 # oldstable | CMake 3.13.4 | G++ 8.3.0 | SDL 2.0.9 | ||
- ubuntu:20.04 # LTS | CMake 3.16.3 | G++ 9.3.0 | SDL 2.0.10 | ||
- debian:11 # stable | CMake 3.18.4 | G++ 10.2.1 | SDL 2.0.14 | ||
- ubuntu:22.04 # LTS | CMake 3.22.1 | G++ 11.2.0 | SDL 2.0.20 | ||
- ubuntu:20.04 # LTS (4/25) | CMake 3.16.3 | G++ 9.3.0 | SDL 2.0.10 | ||
- debian:11 # old (8/24) | CMake 3.18.4 | G++ 10.2.1 | SDL 2.0.14 | ||
- ubuntu:22.04 # LTS (6/27) | CMake 3.22.1 | G++ 11.2.0 | SDL 2.0.20 | ||
- debian:12 # stbl (6/26) | CMake 3.25.1 | G++ 12.2.0 | SDL 2.26.5 | ||
|
||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
||
- name: Install dependencies | ||
run: | | ||
export DEBIAN_FRONTEND="noninteractive" | ||
|
@@ -45,10 +46,10 @@ jobs: | |
libdrm-dev libgbm-dev # only needed for sdl2 on debian 11 | ||
- name: Clone Repository | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
if: github.event.inputs.git-ref == '' | ||
- name: Clone Repository (with custom ref) | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v4 | ||
if: github.event.inputs.git-ref != '' | ||
with: | ||
ref: ${{ github.event.inputs.git-ref }} | ||
|
@@ -63,8 +64,7 @@ jobs: | |
- name: Install | ||
run: | | ||
# cmake < 3.16 does not support '--install' | ||
cmake --build build --target install | ||
cmake --install build | ||
- name: Test | ||
run: | | ||
|
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