Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-06-21 01:53:11 +0300
committerJunio C Hamano <gitster@pobox.com>2023-06-21 01:53:11 +0300
commit056d16406d073cb512a32c64091b1931d1d694c9 (patch)
tree5bfc3fe40f3858becd85bc84c0023329fe51c85b /ci
parentae196330213c5eecd0f01e57d58efb3fcf58f887 (diff)
parentd88d727143c3444897a9fdfe2d443c72808bcc97 (diff)
Merge branch 'jk/ci-use-clang-for-sanitizer-jobs'
Clang's sanitizer implementation seems to work better than GCC's. * jk/ci-use-clang-for-sanitizer-jobs: ci: drop linux-clang job ci: run ASan/UBSan in a single job ci: use clang for ASan/UBSan checks
Diffstat (limited to 'ci')
-rwxr-xr-xci/lib.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index db7105e8a8..369d462f13 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -278,11 +278,8 @@ linux-leaks)
export GIT_TEST_PASSING_SANITIZE_LEAK=true
export GIT_TEST_SANITIZE_LEAK_LOG=true
;;
-linux-asan)
- export SANITIZE=address
- ;;
-linux-ubsan)
- export SANITIZE=undefined
+linux-asan-ubsan)
+ export SANITIZE=address,undefined
;;
esac