[infra] Use stable version of AFL from the upstream repo. (#2767)

This commit is contained in:
Max Moroz 2019-08-27 09:53:48 -07:00 committed by GitHub
parent 4159623ecd
commit b3726e9d20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -93,11 +93,7 @@ ENV FUZZER_LDFLAGS ""
WORKDIR $SRC
ADD http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz $SRC/
RUN mkdir afl && \
cd afl && \
tar -xzv --strip-components=1 -f $SRC/afl-latest.tgz && \
rm -rf $SRC/afl-latest.tgz
RUN git clone -b stable https://github.com/google/AFL.git afl
ADD https://github.com/google/honggfuzz/archive/oss-fuzz.tar.gz $SRC/
RUN mkdir honggfuzz && \