@@ -39,13 +39,13 @@ jobs:
39
39
path : build/revert-list.txt
40
40
- name : Build project
41
41
run : |
42
- cmake --build build --parallel
42
+ cmake --build build --parallel -- --quiet
43
43
env :
44
44
CC : gcc-14
45
45
CXX : g++-14
46
46
- name : Install project
47
47
run : |
48
- cmake --build build --target install
48
+ cmake --build build --target install -- --quiet
49
49
- name : Archive installed package
50
50
uses : ./.github/actions/archive-install
51
51
with :
@@ -143,13 +143,13 @@ jobs:
143
143
CXX : clang++-21
144
144
- name : Build project
145
145
run : |
146
- cmake --build build --parallel
146
+ cmake --build build --parallel -- --quiet
147
147
env :
148
148
CC : clang-21
149
149
CXX : clang++-21
150
150
- name : Install project
151
151
run : |
152
- cmake --build build --target install
152
+ cmake --build build --target install -- --quiet
153
153
- name : Archive installed package
154
154
uses : ./.github/actions/archive-install
155
155
with :
@@ -249,13 +249,13 @@ jobs:
249
249
CXX : clang++-21
250
250
- name : Build project
251
251
run : |
252
- cmake --build build --parallel
252
+ cmake --build build --parallel -- --quiet
253
253
env :
254
254
CC : clang-21
255
255
CXX : clang++-21
256
256
- name : Install project
257
257
run : |
258
- cmake --build build --target install
258
+ cmake --build build --target install -- --quiet
259
259
- name : Archive installed package
260
260
uses : ./.github/actions/archive-install
261
261
with :
@@ -356,7 +356,7 @@ jobs:
356
356
-D CMAKE_VERBOSE_MAKEFILE=ON -D USE_COVERAGE=ON
357
357
- name : Build project
358
358
run : |
359
- cmake --build build --parallel
359
+ cmake --build build --parallel -- --quiet
360
360
- name : Run tests (MPI)
361
361
run : scripts/run_tests.py --running-type="processes" --additional-mpi-args="--oversubscribe"
362
362
env :
0 commit comments