Skip to content

Commit

Permalink
Remove verbose for check target in CI (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
olemke authored Oct 22, 2024
2 parents 98afa87 + af79c9b commit 2752a6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Configure
shell: bash -l {0}
run: |
cmake --preset=${{ matrix.preset }} -DARTS_CTEST_USER_OPTIONS="-V"
cmake --preset=${{ matrix.preset }} # -DARTS_CTEST_USER_OPTIONS="-V"
- name: Build ARTS Workspace
shell: bash -l {0}
Expand All @@ -131,7 +131,7 @@ jobs:
if: matrix.check == 'yes'
shell: bash -l {0}
run: |
cmake --build build -j1 --verbose --target check
cmake --build build -j1 --target check
- name: Python Wheel
if: matrix.check == 'yes'
Expand Down

0 comments on commit 2752a6f

Please sign in to comment.