From: Viktor Szakats Date: Mon, 10 Aug 2026 17:09:17 +0000 (+0200) Subject: GHA/linux: replace raw C option with `CMAKE_BUILD_TYPE=Debug` in tsan job X-Git-Url: http://git.ipfire.org/index.cgi?a=commitdiff_plain;h=HEAD;p=thirdparty%2Fcurl.git GHA/linux: replace raw C option with `CMAKE_BUILD_TYPE=Debug` in tsan job Ref: #22533 Follow-up to 2a46df31fdb91851895bc46d81f0065e6cafc80b #18274 Closes #22534 --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index d3aca8d4dc..20b0ab78a2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -414,9 +414,9 @@ jobs: install_packages: clang-22 libtsan2 install_steps: pytest openssl-tsan CC: clang-22 - CFLAGS: -fsanitize=thread -g + CFLAGS: -fsanitize=thread LDFLAGS: -fsanitize=thread - generate: -DOPENSSL_ROOT_DIR=/home/runner/openssl -DUSE_ECH=ON -DENABLE_DEBUG=ON + generate: -DCMAKE_BUILD_TYPE=Debug -DENABLE_DEBUG=ON -DOPENSSL_ROOT_DIR=/home/runner/openssl -DUSE_ECH=ON - name: 'memory-sanitizer' image: ubuntu-26.04