Skip to content

Commit

Permalink
VERBOSE=1 to CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
cwpearson committed Dec 18, 2023
1 parent 0ddff5a commit 762d803
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 @@ -38,7 +38,7 @@ jobs:
- name: Build KokkosComm
run: |
cmake -S "$COMM_SRC" -B "$COMM_BUILD" -DKokkos_DIR="$KOKKOS_INSTALL/lib/cmake/Kokkos" -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_BUILD_TYPE=Debug
cmake --build "$COMM_BUILD" --parallel "$(nproc)"
VERBOSE=1 cmake --build "$COMM_BUILD" --parallel "$(nproc)"
- name: Test KokkosComm
run: |
ctest -V --test-dir "$COMM_BUILD"
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Build KokkosComm
run: |
cmake -S "$COMM_SRC" -B "$COMM_BUILD" -DKokkos_DIR="$KOKKOS_INSTALL/lib/cmake/Kokkos" -DCMAKE_CXX_COMPILER=mpicxx -DCMAKE_BUILD_TYPE=Debug
cmake --build "$COMM_BUILD" --parallel "$(nproc)"
VERBOSE=1 cmake --build "$COMM_BUILD" --parallel "$(nproc)"
- name: Test KokkosComm
run: |
ctest -V --test-dir "$COMM_BUILD"

0 comments on commit 762d803

Please sign in to comment.