From f6b6280f3e40061c1100a88740f900f1d4ac0c39 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Thu, 1 Oct 2020 22:10:40 -0700 Subject: [PATCH] Added verbose flag to CI to see sanitizer output. --- .github/workflows/cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 3824af50..78ca0699 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -399,7 +399,7 @@ jobs: if: runner.os != 'Windows' || contains(matrix.name, 'ARM') == false run: | cd ${{ matrix.build-dir || '.' }} - ctest -C Release --output-on-failure --max-width 120 -j 6 + ctest --verbose -C Release --output-on-failure --max-width 120 -j 6 env: ASAN_OPTIONS: ${{ matrix.asan-options || 'verbosity=1' }}:abort_on_error=1 MSAN_OPTIONS: ${{ matrix.msan-options || 'verbosity=1' }}:abort_on_error=1 -- 2.47.2