From: Nathan Moinvaziri Date: Wed, 4 Nov 2020 07:16:10 +0000 (-0800) Subject: Set verbosity to 0 to limit CI log output. X-Git-Tag: v2.0.0-RC1~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fdb014e8fbc6facec5deb252524d4593cc1f049;p=thirdparty%2Fzlib-ng.git Set verbosity to 0 to limit CI log output. --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 694bffe8..66aee306 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -357,10 +357,10 @@ jobs: cd ${{ matrix.build-dir || '.' }} 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 - TSAN_OPTIONS: ${{ matrix.tsan-options || 'verbosity=1' }}:abort_on_error=1 - LSAN_OPTIONS: ${{ matrix.lsan-options || 'verbosity=1' }}:abort_on_error=1 + ASAN_OPTIONS: ${{ matrix.asan-options || 'verbosity=0' }}:abort_on_error=1 + MSAN_OPTIONS: ${{ matrix.msan-options || 'verbosity=0' }}:abort_on_error=1 + TSAN_OPTIONS: ${{ matrix.tsan-options || 'verbosity=0' }}:abort_on_error=1 + LSAN_OPTIONS: ${{ matrix.lsan-options || 'verbosity=0' }}:abort_on_error=1 - name: Upload coverage report if: matrix.codecov && ( env.CODECOV_TOKEN_SECRET != '' || github.repository == 'zlib-ng/zlib-ng' )