Skip to content

Commit 5cc8db9

Browse files
committed
Use --quiet for 'cmake --build'
1 parent cf18b3e commit 5cc8db9

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Build project
5151
if: matrix.language == 'cpp'
5252
run: |
53-
cmake --build build --parallel
53+
cmake --build build --parallel -- --quiet
5454
env:
5555
CC: gcc-14
5656
CXX: g++-14

.github/workflows/mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
-D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_INSTALL_PREFIX=install
3636
- name: Build project
3737
run: |
38-
cmake --build build --parallel
38+
cmake --build build --parallel -- --quiet
3939
- name: Install project
4040
run: |
41-
cmake --build build --target install
41+
cmake --build build --target install -- --quiet
4242
- name: Archive installed package
4343
uses: ./.github/actions/archive-install
4444
with:

.github/workflows/pages.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ jobs:
5454
cmake -S . -B build -D USE_DOCS=ON
5555
- name: Build i18n
5656
run: |
57-
cmake --build build -t docs_gettext
58-
cmake --build build -t docs_update
57+
cmake --build build -t docs_gettext -- --quiet
58+
cmake --build build -t docs_update -- --quiet
5959
- name: Build documentation
6060
run: |
61-
cmake --build build -t docs_html
61+
cmake --build build -t docs_html -- --quiet
6262
- name: Upload artifact
6363
uses: actions/upload-artifact@v4
6464
with:
@@ -90,7 +90,7 @@ jobs:
9090
cmake -S . -B build -DUSE_SCOREBOARD=ON
9191
- name: CMake build
9292
run: |
93-
cmake --build build --parallel
93+
cmake --build build --parallel -- --quiet
9494
- name: Upload artifact
9595
uses: actions/upload-artifact@v4
9696
with:

.github/workflows/static-analysis-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Build project
5353
run: |
54-
cmake --build build --parallel
54+
cmake --build build --parallel -- --quiet
5555
env:
5656
CC: clang-21
5757
CXX: clang++-21
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Build project
101101
run: |
102-
cmake --build build --parallel
102+
cmake --build build --parallel -- --quiet
103103
env:
104104
CC: gcc-14
105105
CXX: g++-14

.github/workflows/ubuntu.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ jobs:
3939
path: build/revert-list.txt
4040
- name: Build project
4141
run: |
42-
cmake --build build --parallel
42+
cmake --build build --parallel -- --quiet
4343
env:
4444
CC: gcc-14
4545
CXX: g++-14
4646
- name: Install project
4747
run: |
48-
cmake --build build --target install
48+
cmake --build build --target install -- --quiet
4949
- name: Archive installed package
5050
uses: ./.github/actions/archive-install
5151
with:
@@ -143,13 +143,13 @@ jobs:
143143
CXX: clang++-21
144144
- name: Build project
145145
run: |
146-
cmake --build build --parallel
146+
cmake --build build --parallel -- --quiet
147147
env:
148148
CC: clang-21
149149
CXX: clang++-21
150150
- name: Install project
151151
run: |
152-
cmake --build build --target install
152+
cmake --build build --target install -- --quiet
153153
- name: Archive installed package
154154
uses: ./.github/actions/archive-install
155155
with:
@@ -249,13 +249,13 @@ jobs:
249249
CXX: clang++-21
250250
- name: Build project
251251
run: |
252-
cmake --build build --parallel
252+
cmake --build build --parallel -- --quiet
253253
env:
254254
CC: clang-21
255255
CXX: clang++-21
256256
- name: Install project
257257
run: |
258-
cmake --build build --target install
258+
cmake --build build --target install -- --quiet
259259
- name: Archive installed package
260260
uses: ./.github/actions/archive-install
261261
with:
@@ -356,7 +356,7 @@ jobs:
356356
-D CMAKE_VERBOSE_MAKEFILE=ON -D USE_COVERAGE=ON
357357
- name: Build project
358358
run: |
359-
cmake --build build --parallel
359+
cmake --build build --parallel -- --quiet
360360
- name: Run tests (MPI)
361361
run: scripts/run_tests.py --running-type="processes" --additional-mpi-args="--oversubscribe"
362362
env:

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Build project
2525
shell: bash
2626
run: |
27-
cmake --build build --config ${{ matrix.build_type }} --parallel
27+
cmake --build build --config ${{ matrix.build_type }} --parallel -- --quiet
2828
- name: Install project
2929
run: |
30-
cmake --build build --target install
30+
cmake --build build --target install -- --quiet
3131
- name: Archive installed package
3232
uses: ./.github/actions/archive-install
3333
with:

0 commit comments

Comments
 (0)