Compare commits

...

1 Commits

Author SHA1 Message Date
Sergiu Deitsch
7a4c79f7a8
ci: add ubuntu 24.04 support 2024-06-13 00:10:23 +02:00

View File

@ -7,8 +7,8 @@ jobs:
defaults: defaults:
run: run:
shell: bash shell: bash
name: GCC-C++${{matrix.std}}-${{matrix.build_type}}-${{matrix.lib}} name: ${{matrix.os}}-GCC-C++${{matrix.std}}-${{matrix.build_type}}-${{matrix.lib}}
runs-on: ubuntu-22.04 runs-on: ${{matrix.os}}
permissions: permissions:
actions: read actions: read
contents: read contents: read
@ -16,6 +16,7 @@ jobs:
strategy: strategy:
fail-fast: true fail-fast: true
matrix: matrix:
os: [ubuntu-22.04, ubuntu-24.04]
build_type: [Release, Debug] build_type: [Release, Debug]
lib: [shared, static] lib: [shared, static]
std: [14, 17, 20, 23] std: [14, 17, 20, 23]