ci: there is no point in building with code-coverage on clang (#1285)

This commit is contained in:
Tyler Wilding 2022-04-04 21:29:38 -04:00 committed by GitHub
parent 79f255bcc1
commit 2caf75a11c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ jobs:
-DBUILD_FOR_RELEASE=ON \
-DCMAKE_C_COMPILER_LAUNCHER="${{ github.workspace }}"/buildcache/bin/buildcache \
-DCMAKE_CXX_COMPILER_LAUNCHER="${{ github.workspace }}"/buildcache/bin/buildcache \
-DCODE_COVERAGE=ON -DASAN_BUILD=ON
-DASAN_BUILD=ON
- name: CMake Generation - Clang - No ASAN
if: matrix.compiler == 'clang' && startsWith(github.ref, 'refs/tags/')
@ -74,7 +74,7 @@ jobs:
-DBUILD_FOR_RELEASE=ON \
-DCMAKE_C_COMPILER_LAUNCHER="${{ github.workspace }}"/buildcache/bin/buildcache \
-DCMAKE_CXX_COMPILER_LAUNCHER="${{ github.workspace }}"/buildcache/bin/buildcache \
-DCODE_COVERAGE=ON -DASAN_BUILD=OFF
-DASAN_BUILD=OFF
- name: CMake Generation - GCC
if: matrix.compiler == 'gcc'