Skip to content

Commit

Permalink
use gcc 13 in github actions to get full c++20 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Mar 23, 2024
1 parent a39227d commit e651bb4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
compiler: [ g++-12 ]
compiler: [ g++-13 ]
include:
- os: ubuntu-latest
compiler: g++-12
compiler: g++-13
target: Linux

steps:
Expand All @@ -30,11 +30,11 @@ jobs:

- name: build
env:
CC: gcc-12
CXX: g++-12
CC: gcc-13
CXX: g++-13
run: |
sudo apt update
sudo apt install gcc-12 g++-12
sudo apt install gcc-13 g++-13
mkdir build
cd build
cmake ..
Expand Down

0 comments on commit e651bb4

Please sign in to comment.