diff --git a/.github/workflows/actions_build.yml b/.github/workflows/actions_build.yml index e4eb050..d29f785 100644 --- a/.github/workflows/actions_build.yml +++ b/.github/workflows/actions_build.yml @@ -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 @@ -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 diff --git a/script/env_dev_gcc14.sh b/script/env_dev_gcc14.sh new file mode 100755 index 0000000..2fe94e7 --- /dev/null +++ b/script/env_dev_gcc14.sh @@ -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 "$@"