Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Build project
if: matrix.language == 'cpp'
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
env:
CC: gcc-14
CXX: g++-14
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
-D CMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_INSTALL_PREFIX=install
- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
- name: Install project
run: |
cmake --build build --target install
cmake --build build --target install -- --quiet
- name: Archive installed package
uses: ./.github/actions/archive-install
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ jobs:
cmake -S . -B build -D USE_DOCS=ON
- name: Build i18n
run: |
cmake --build build -t docs_gettext
cmake --build build -t docs_update
cmake --build build -t docs_gettext -- --quiet
cmake --build build -t docs_update -- --quiet
- name: Build documentation
run: |
cmake --build build -t docs_html
cmake --build build -t docs_html -- --quiet
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
cmake -S . -B build -DUSE_SCOREBOARD=ON
- name: CMake build
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
env:
CC: clang-21
CXX: clang++-21
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
env:
CC: gcc-14
CXX: g++-14
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ jobs:
path: build/revert-list.txt
- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
env:
CC: gcc-14
CXX: g++-14
- name: Install project
run: |
cmake --build build --target install
cmake --build build --target install -- --quiet
- name: Archive installed package
uses: ./.github/actions/archive-install
with:
Expand Down Expand Up @@ -143,13 +143,13 @@ jobs:
CXX: clang++-21
- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
env:
CC: clang-21
CXX: clang++-21
- name: Install project
run: |
cmake --build build --target install
cmake --build build --target install -- --quiet
- name: Archive installed package
uses: ./.github/actions/archive-install
with:
Expand Down Expand Up @@ -249,13 +249,13 @@ jobs:
CXX: clang++-21
- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
env:
CC: clang-21
CXX: clang++-21
- name: Install project
run: |
cmake --build build --target install
cmake --build build --target install -- --quiet
- name: Archive installed package
uses: ./.github/actions/archive-install
with:
Expand Down Expand Up @@ -356,7 +356,7 @@ jobs:
-D CMAKE_VERBOSE_MAKEFILE=ON -D USE_COVERAGE=ON
- name: Build project
run: |
cmake --build build --parallel
cmake --build build --parallel -- --quiet
- name: Run tests (MPI)
run: scripts/run_tests.py --running-type="processes" --additional-mpi-args="--oversubscribe"
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- name: Build project
shell: bash
run: |
cmake --build build --config ${{ matrix.build_type }} --parallel
cmake --build build --config ${{ matrix.build_type }} --parallel -- --quiet
- name: Install project
run: |
cmake --build build --target install
cmake --build build --target install -- --quiet
- name: Archive installed package
uses: ./.github/actions/archive-install
with:
Expand Down
Loading