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 86b0825 commit faf6cbcCopy full SHA for faf6cbc
test-with-asan.sh
@@ -26,4 +26,10 @@ else
26
fi
27
echo "Starting Gradle for target(s) \"$args\"..."
28
29
-LD_PRELOAD=${ASAN_LIB_SO} ./gradlew -Dorg.gradle.daemon=false --stacktrace ${args}
+user=$(whoami)
30
+if [[ ${user} == "jenkins" ]]; then
31
+ echo "WARNING!! USING DAEMON ON JENKINS (VS. ASAN)"
32
+ LD_PRELOAD=${ASAN_LIB_SO} ./gradlew --stacktrace ${args}
33
+else
34
+ LD_PRELOAD=${ASAN_LIB_SO} ./gradlew -Dorg.gradle.daemon=false --stacktrace ${args}
35
+fi
0 commit comments