From c31cdfcaf39e8f4e473bc61ccdffc661d566dc1f Mon Sep 17 00:00:00 2001 From: Kevin Heifner Date: Tue, 3 Jun 2025 08:13:29 -0500 Subject: [PATCH] GH-1541 run with extra verbose ctest output --- .github/workflows/build.yaml | 2 +- .github/workflows/llvm.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2e8ebee8b..6df61c28f 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -158,7 +158,7 @@ jobs: chown -R $(id -u):$(id -g) $PWD zstdcat build.tar.zst | tar x cd build - ctest --output-on-failure -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" ${IS_SAN:+-E 'eos-vm$'} --timeout 480 + ctest --output-on-failure --extra-verbose -j $(nproc) -LE "(nonparallelizable_tests|long_running_tests)" ${IS_SAN:+-E 'eos-vm$'} --timeout 480 - name: Upload core files from failed tests uses: actions/upload-artifact@v4 if: failure() diff --git a/.github/workflows/llvm.yaml b/.github/workflows/llvm.yaml index 8ba6eba4d..550559843 100644 --- a/.github/workflows/llvm.yaml +++ b/.github/workflows/llvm.yaml @@ -44,4 +44,4 @@ jobs: cmake -S src -B build -DCMAKE_BUILD_TYPE=Release -GNinja cmake --build build - name: Test spring - run: ctest --test-dir build -j $(nproc) --output-on-failure -LE "(nonparallelizable_tests|long_running_tests)" --timeout 480 + run: ctest --test-dir build -j $(nproc) --output-on-failure --extra-verbose -LE "(nonparallelizable_tests|long_running_tests)" --timeout 480