We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd704e7 commit 303272bCopy full SHA for 303272b
1 file changed
.github/build.sh
@@ -118,6 +118,16 @@ run_matrix_for_current_compiler() {
118
fi
119
120
121
+ # TSan with libsodium (avoids OpenSSL false positives).
122
+ # Only clang, only x86_64 (tsan not reliable elsewhere).
123
+ if [[ "${compiler}" == "clang" ]] && [[ "${uname_M}" == x86_64 ]]; then
124
+ run_single --compiler "${compiler}" --build-dir build-tsan \
125
+ --sanitizer tsan \
126
+ --crypto libsodium --crypto25519 libsodium \
127
+ --targets test_connection test_crypto \
128
+ --run-tests
129
+ fi
130
+
131
# Build normal unsanitized binaries
132
run_single --compiler "${compiler}" --build-dir build-cmake --build-type RelWithDebInfo --run-tests
133
0 commit comments