File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1515 strategy :
1616 fail-fast : false
1717 matrix :
18+ build_type : [Debug, Release, MinSizeRel]
1819 include :
1920 - os : ubuntu-24.04
2021 ccache-variant : sccache
6869 cmake -B ${{ steps.strings.outputs.build-output-dir }}
6970 -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
7071 -DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
71- -DCMAKE_BUILD_TYPE=MinSizeRel
72+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
7273 -DCMAKE_C_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
7374 -DCMAKE_CXX_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
7475 -DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.build-install-dir }}
Original file line number Diff line number Diff line change 1616 # Set fail-fast to false to ensure that feedback is delivered for all matrix combinations.
1717 fail-fast : false
1818 matrix :
19+ build_type : [Debug, Release, MinSizeRel]
1920 include :
2021 # TODO: add linux gcc when it is fixed
2122 - os : ubuntu-24.04
9596 cmake -B ${{ steps.strings.outputs.build-output-dir }}
9697 -DCMAKE_CXX_COMPILER=${{ matrix.compiler.cpp_compiler }}
9798 -DCMAKE_C_COMPILER=${{ matrix.compiler.c_compiler }}
98- -DCMAKE_BUILD_TYPE=MinSizeRel
99+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
99100 -DCMAKE_C_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
100101 -DCMAKE_CXX_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
101102 -DCMAKE_POLICY_DEFAULT_CMP0141=NEW
You can’t perform that action at this time.
0 commit comments