File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -28,16 +28,20 @@ jobs:
2828 strategy :
2929 fail-fast : false
3030 matrix :
31- cxx :
32- - g++-14
33- - clang++
3431 config :
3532 # Release build
36- - build_type : Release
33+ - cxx : g++-14
34+ build_type : Release
35+ - cxx : clang++
36+ build_type : Release
3737 # Debug builds
38- - build_type : Debug
38+ - cxx : g++-14
39+ build_type : Debug
40+ - cxx : clang++
41+ build_type : Debug
3942 sanitize : address
40- - build_type : Debug
43+ - cxx : clang++
44+ build_type : Debug
4145 sanitize : undefined
4246
4347 steps :
4852 - name : Configure CMake
4953 working-directory : ${{runner.workspace}}
5054 run : |
51- export CXX=${{matrix.cxx}}
55+ export CXX=${{matrix.config. cxx}}
5256 cmake -H${{github.event.repository.name}} -Bbuild \
5357 -DCMAKE_CONFIGURATION_TYPES=${{matrix.config.build_type}} \
5458 -DCMAKE_BUILD_TYPE=${{matrix.config.build_type}} \
You can’t perform that action at this time.
0 commit comments