Skip to content

Commit

Permalink
CI: remove verbose flag when building
Browse files Browse the repository at this point in the history
It's too verbose to spot errors/warnings. It's useful to debug
the flags passed to the compiler.
  • Loading branch information
robUx4 committed Mar 10, 2024
1 parent 63064a6 commit 6973098
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built

- name: Build
run: cmake --build _build --parallel --verbose
run: cmake --build _build --parallel

- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built

- name: Build
run: cmake --build _build --parallel --verbose
run: cmake --build _build --parallel

- name: Test installation
run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built
Expand Down

0 comments on commit 6973098

Please sign in to comment.