From 77918acda14e964215afddc759d2345fff11e84e Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Thu, 3 Dec 2020 11:42:53 +0100 Subject: [PATCH] [gitlab-ci] add clang tsan target --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9e9c0d61..31b8e82b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -77,6 +77,12 @@ variables: variables: EMPER_B_SANITIZE: 'undefined' +.clang-sanitizer-thread: + extends: + - .clang-sanitizer + variables: + EMPER_B_SANITIZE: 'thread' + #.clang-sanitizer-memory: # extends: # - .clang-sanitizer @@ -147,6 +153,11 @@ test-clang-sanitizer-undefined: - .test - .clang-sanitizer-undefined +test-clang-sanitizer-thread: + extends: + - .test + - .clang-sanitizer-thread + #test-clang-sanitizer-memory: # extends: # - .test -- GitLab