Skip to content

Commit

Permalink
Testing C++23 on github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Sep 10, 2024
1 parent f7371cf commit 5106fe6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ jobs:
matrix:
type: [Debug, Release, MinSizeRel]
cc_ver: [13, 14]
cpp: [11, 14, 17, 20]
cpp: [11, 14, 17, 20, 23]
exclude:
- cc_ver: 13
cpp: 23

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -351,7 +354,7 @@ jobs:
matrix:
type: [Debug, Release, MinSizeRel]
cc_ver: [16, 17, 18]
cpp: [11, 14, 17, 20]
cpp: [11, 14, 17, 20, 23]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 7 additions & 0 deletions script/env_dev_gcc14.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/bash

export CC=gcc-14
export CXX=g++-14

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source ${SCRIPT_DIR}/env_dev.sh "$@"

0 comments on commit 5106fe6

Please sign in to comment.