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 15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
+ build_type : [Debug, Release, MinSizeRel]
18
19
include :
19
20
- os : ubuntu-24.04
20
21
ccache-variant : sccache
68
69
cmake -B ${{ steps.strings.outputs.build-output-dir }}
69
70
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
70
71
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}
71
- -DCMAKE_BUILD_TYPE=MinSizeRel
72
+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
72
73
-DCMAKE_C_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
73
74
-DCMAKE_CXX_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
74
75
-DCMAKE_INSTALL_PREFIX=${{ steps.strings.outputs.build-install-dir }}
Original file line number Diff line number Diff line change 16
16
# Set fail-fast to false to ensure that feedback is delivered for all matrix combinations.
17
17
fail-fast : false
18
18
matrix :
19
+ build_type : [Debug, Release, MinSizeRel]
19
20
include :
20
21
# TODO: add linux gcc when it is fixed
21
22
- os : ubuntu-24.04
95
96
cmake -B ${{ steps.strings.outputs.build-output-dir }}
96
97
-DCMAKE_CXX_COMPILER=${{ matrix.compiler.cpp_compiler }}
97
98
-DCMAKE_C_COMPILER=${{ matrix.compiler.c_compiler }}
98
- -DCMAKE_BUILD_TYPE=MinSizeRel
99
+ -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
99
100
-DCMAKE_C_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
100
101
-DCMAKE_CXX_COMPILER_LAUNCHER=${{ matrix.ccache-variant }}
101
102
-DCMAKE_POLICY_DEFAULT_CMP0141=NEW
You can’t perform that action at this time.
0 commit comments