Skip to content

Commit

Permalink
ci: add ubuntu 24.04 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud committed Jun 8, 2024
1 parent cd4ef77 commit 3b8c742
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ jobs:
defaults:
run:
shell: bash
name: GCC-C++${{matrix.std}}-${{matrix.build_type}}-${{matrix.lib}}
runs-on: ubuntu-22.04
name: ${{runner.os}}-GCC-C++${{matrix.std}}-${{matrix.build_type}}-${{matrix.lib}}
runs-on: ${{matrix.os}}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
build_type: [Release, Debug]
lib: [shared, static]
std: [14, 17, 20, 23]
Expand Down

0 comments on commit 3b8c742

Please sign in to comment.