From 46887d7fc480905473277ad06440d7213385c096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sof=C3=ADa=20Celi?= Date: Tue, 10 Dec 2024 01:05:51 +0000 Subject: [PATCH] Make it more verbose given: https://ctest-ext.readthedocs.io/en/master/ci/common/OC --- .github/workflows/cmake.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index f69cc6f..d739a91 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -26,12 +26,12 @@ jobs: - name: Install xsltproc run: sudo apt-get install -y xsltproc - + - name: Install Valgrind run: | sudo apt install valgrind echo "Valgrind installed" - + - name: Install Valgrind dependencies run: | python -m pip install --upgrade pip @@ -55,7 +55,7 @@ jobs: # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: ctest -C ${{env.BUILD_TYPE}} - + - name: Examples (opt/avx2) working-directory: ${{github.workspace}}/build/apps run: | @@ -86,7 +86,7 @@ jobs: ./example_nistapi_mayo_3 ./example_nistapi_mayo_5 if: matrix.mayo_build_type == 'ref' - + - name: CT-Tests run: | rm -rf build @@ -136,25 +136,25 @@ jobs: rm -rf build cmake -Bbuild -DCMAKE_BUILD_TYPE=ASAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang cmake --build build - ctest -V --test-dir build + ctest -VV --test-dir build - name: Memory Sanitizer MSAN run: | rm -rf build cmake -Bbuild -DCMAKE_BUILD_TYPE=MSAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang cmake --build build - ctest -V --test-dir build + ctest -VV --test-dir build - name: Leak Sanitizer LSAN run: | rm -rf build cmake -Bbuild -DCMAKE_BUILD_TYPE=LSAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang cmake --build build - ctest -V --test-dir build + ctest -VV --test-dir build - name: Undefined Behavior Sanitizer UBSAN run: | rm -rf build cmake -Bbuild -DCMAKE_BUILD_TYPE=UBSAN -DMAYO_BUILD_TYPE=${{ matrix.mayo_build_type }} -DCMAKE_C_COMPILER=clang cmake --build build - ctest -V --test-dir build + ctest -VV --test-dir build