File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,6 +151,21 @@ jobs:
151151 run : |
152152 cmake --build cmake.output --target install
153153
154+ - name : Run CMake on ubuntu (no CLI)
155+ if : matrix.os == 'ubuntu-22.04'
156+ run : |
157+ cmake -S . -B cmake.output_nocli -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_CLI=Off -DBUILD_GUI=On -DWITH_QCHART=On -DBUILD_TRIAGE=On
158+
159+ - name : Run CMake on ubuntu (no GUI)
160+ if : matrix.os == 'ubuntu-22.04'
161+ run : |
162+ cmake -S . -B cmake.output_nogui -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_CLI=On -DBUILD_GUI=Off -DWITH_QCHART=On -DBUILD_TRIAGE=On
163+
164+ - name : Run CMake on ubuntu (no CLI / no GUI)
165+ if : matrix.os == 'ubuntu-22.04'
166+ run : |
167+ cmake -S . -B cmake.output_nocli_nogui -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_CLI=On -DBUILD_GUI=Off -DWITH_QCHART=On -DBUILD_TRIAGE=On
168+
154169 build_uchar :
155170
156171 strategy :
You can’t perform that action at this time.
0 commit comments