]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
CI: disable sanitizers until we can work out why it deadlocks in Docker
authorMatthew Newton <matthew-git@newtoncomputing.co.uk>
Tue, 25 Oct 2022 16:39:34 +0000 (17:39 +0100)
committerMatthew Newton <matthew-git@newtoncomputing.co.uk>
Tue, 25 Oct 2022 21:37:58 +0000 (22:37 +0100)
.github/actions/build-freeradius/action.yml

index 412a31aadbe4aa140118f49e2ee082065e5efbc7..26fe89420c6198135bd97b0e41754244581e382a 100644 (file)
@@ -222,12 +222,13 @@ runs:
       shell: bash
       run: |
         if $CC -v 2>&1 | grep clang > /dev/null; then
-            echo "Enabling sanitizers"
-            enable_sanitizers="--enable-address-sanitizer --enable-undefined-behaviour-sanitizer"
-            if [ "`uname`" != "Darwin" ]; then
-                enable_sanitizers="$enable_sanitizers --enable-leak-sanitizer"
-            fi
+            #echo "Enabling sanitizers"
+            #enable_sanitizers="--enable-address-sanitizer --enable-undefined-behaviour-sanitizer"
+            #if [ "`uname`" != "Darwin" ]; then
+            #    enable_sanitizers="$enable_sanitizers --enable-leak-sanitizer"
+            #fi
             if [ "$TEST_TYPE" = "fuzzing" ]; then
+                echo "Enabling fuzzer"
                 enable_sanitizers="$enable_sanitizers --enable-fuzzer"
             fi
         else