diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2023-03-28 20:01:09 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2023-03-28 20:01:09 +0300 |
commit | 96f9c0506fa81cada6f96f45768c34f45406c4bb (patch) | |
tree | 8d49f0a3a09cc64951f29f6c8dd688eeb312e9e1 | |
parent | d502bc7c9d9d6dfb3a09aea404395b666d7b374d (diff) |
ci : make ctest verbose, hopefully we see what is wrong with the sanitizer
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26b4519..cb35a32 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,7 @@ jobs: id: cmake_test run: | cd build - ctest --output-on-failure + ctest --verbose ubuntu-latest-cmake-sanitizer: runs-on: ubuntu-latest @@ -98,7 +98,7 @@ jobs: id: cmake_test run: | cd build - ctest --output-on-failure + ctest --verbose macOS-latest-make: runs-on: macos-latest @@ -143,7 +143,7 @@ jobs: id: cmake_test run: | cd build - ctest --output-on-failure + ctest --verbose windows-latest-cmake: runs-on: windows-latest @@ -185,7 +185,7 @@ jobs: if: ${{ matrix.build != 'avx512' || env.HAS_AVX512F == '1' }} # Test AVX-512 only when possible run: | cd build - ctest -C Release --output-on-failure + ctest -C Release --verbose - name: Get commit hash id: commit |