Skip to content

Commit

Permalink
Add g++-14 compiler to Linux workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkrupinski committed May 30, 2024
1 parent e99390f commit c6174f6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,16 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
compiler: [g++-11, g++-12, g++-13, clang++-15, clang++-16, clang++-17, clang++-18]
configuration: [Debug, Release]
include:
- os: ubuntu-24.04
compiler: g++-14
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v4
- name: install g++-13
Expand Down

0 comments on commit c6174f6

Please sign in to comment.