aboutsummaryrefslogtreecommitdiff
path: root/ossfuzz
diff options
context:
space:
mode:
authorNick Terrell <terrelln@fb.com>2020-08-19 18:19:11 -0700
committerNick Terrell <terrelln@fb.com>2020-08-19 18:48:10 -0700
commite97ff296272799d827b9a2dc0c9a2710b3a5b85c (patch)
tree27b3a8034b71ed4b1f6e3c83cf8800b10c6f005f /ossfuzz
parentfa5435bca9140c10bd1756d96e1b52a11e88d0ad (diff)
downloadlz4-e97ff296272799d827b9a2dc0c9a2710b3a5b85c.tar.gz
[CI][Fuzz] Fix Travis-CI fuzzer tests
Fixes #781
Diffstat (limited to 'ossfuzz')
-rwxr-xr-xossfuzz/travisoss.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/ossfuzz/travisoss.sh b/ossfuzz/travisoss.sh
index 5ea884cb..218f4d66 100755
--- a/ossfuzz/travisoss.sh
+++ b/ossfuzz/travisoss.sh
@@ -12,7 +12,12 @@ then
fi
# Modify the oss-fuzz Dockerfile so that we're checking out the current branch on travis.
-sed -i "s@https://github.com/lz4/lz4.git@-b $TRAVIS_BRANCH https://github.com/lz4/lz4.git@" /tmp/ossfuzz/projects/lz4/Dockerfile
+if [ "x${TRAVIS_PULL_REQUEST}" -eq "xfalse" ]
+then
+ sed -i "s@https://github.com/lz4/lz4.git@-b ${TRAVIS_BRANCH} https://github.com/lz4/lz4.git@" /tmp/ossfuzz/projects/lz4/Dockerfile
+else
+ sed -i "s@https://github.com/lz4/lz4.git@-b ${TRAVIS_PULL_REQUEST_BRANCH} https://github.com/${TRAVIS_PULL_REQUEST_SLUG}.git@" /tmp/ossfuzz/projects/lz4/Dockerfile
+fi
# Try and build the fuzzers
pushd /tmp/ossfuzz