We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac55f84 + 6e9ae72 commit 0793e2aCopy full SHA for 0793e2a
.travis.yml
@@ -59,7 +59,8 @@ install:
59
export PATH="$(brew --prefix llvm)/bin:$PATH";
60
fi
61
# Fuzzing is only supported on Clang. Perform fuzzing on Debug builds.
62
-- if [ "$CXX" = "clang++" ] && [ "$BUILD_TYPE" = "Debug" ]; then
+# LibFuzzer doesn't ship with CommandLineTools on osx.
63
+- if [ "$CXX" = "clang++" ] && [ "$BUILD_TYPE" = "Debug" ] && [ "$TRAVIS_OS_NAME" != "osx" ]; then
64
export FUZZING=1;
65
else
66
export FUZZING=0;
0 commit comments