Skip to content

Commit 0793e2a

Browse files
committed
Merge pull request #117 from cmumford:disable-osx-fuzzer
PiperOrigin-RevId: 347736844
2 parents ac55f84 + 6e9ae72 commit 0793e2a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ install:
5959
export PATH="$(brew --prefix llvm)/bin:$PATH";
6060
fi
6161
# Fuzzing is only supported on Clang. Perform fuzzing on Debug builds.
62-
- if [ "$CXX" = "clang++" ] && [ "$BUILD_TYPE" = "Debug" ]; then
62+
# LibFuzzer doesn't ship with CommandLineTools on osx.
63+
- if [ "$CXX" = "clang++" ] && [ "$BUILD_TYPE" = "Debug" ] && [ "$TRAVIS_OS_NAME" != "osx" ]; then
6364
export FUZZING=1;
6465
else
6566
export FUZZING=0;

0 commit comments

Comments
 (0)