Skip to content

Commit 1d5b273

Browse files
authored
Merge branch 'master' into cirq-revise-dockerfile
2 parents 5a7476a + 3d9cfb6 commit 1d5b273

File tree

16 files changed

+24
-24
lines changed

16 files changed

+24
-24
lines changed

projects/apache-commons-collections/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder-jvm
1818

19-
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \
19+
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.zip -o maven.zip && \
2020
unzip maven.zip -d $SRC/maven && \
2121
rm -rf maven.zip
2222

23-
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
23+
ENV MVN $SRC/maven/apache-maven-3.9.9/bin/mvn
2424

2525
RUN git clone https://github.com/apache/commons-collections
2626

projects/docker-client/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
#
1515
##########################################################################
1616
FROM gcr.io/oss-fuzz-base/base-builder-jvm
17-
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \
17+
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.zip -o maven.zip && \
1818
unzip maven.zip -d $SRC/maven && \
1919
rm -rf maven.zip
20-
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
20+
ENV MVN $SRC/maven/apache-maven-3.9.9/bin/mvn
2121
RUN git clone --depth 1 https://github.com/spotify/docker-client docker-client
2222
COPY *.sh *.java $SRC/
2323
WORKDIR $SRC/docker-client

projects/ghostscript/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ FROM gcr.io/oss-fuzz-base/base-builder
1818

1919
RUN apt-get update && apt-get install -y autoconf zlibc libtool liblcms2-dev libpng-dev
2020
RUN git clone --branch branch-2.2 --single-branch --depth 1 https://github.com/apple/cups.git cups
21-
RUN git clone --branch VER-2-13-0 --single-branch --depth 1 https://git.savannah.gnu.org/git/freetype/freetype2.git freetype
21+
RUN git clone --branch VER-2-14-0 --single-branch --depth 1 https://git.savannah.gnu.org/git/freetype/freetype2.git freetype
2222
RUN git clone --single-branch --depth 1 git://git.ghostscript.com/ghostpdl.git ghostpdl
2323
RUN mkdir ghostpdl/fuzz
2424

projects/haproxy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
FROM gcr.io/oss-fuzz-base/base-builder
1717
RUN apt-get update && apt-get install -y make libpcre2-dev zlib1g-dev
1818
RUN git clone https://github.com/haproxy/haproxy
19-
RUN git clone https://github.com/vtest/VTest2 --depth=1
19+
RUN git clone https://code.vinyl-cache.org/vtest/VTest2
2020

2121
WORKDIR $SRC/haproxy
2222

projects/hostap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ FROM gcr.io/oss-fuzz-base/base-builder
1818
RUN apt-get update && \
1919
apt-get install -y make autoconf automake libtool g++ libssl-dev \
2020
libssl-dev:i386
21-
RUN git clone --depth 1 git://w1.fi/srv/git/hostap.git hostap
21+
RUN git clone --depth 1 https://w1.fi/hostap.git hostap
2222
WORKDIR hostap
2323
COPY build.sh $SRC/

projects/jboss-logging/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ MAIN_REPOSITORY=https://github.com/jboss-logging/jboss-logging
2222

2323
function set_project_version_in_fuzz_targets_dependency {
2424
#PROJECT_VERSION=$(cd $PROJECT && $MVN org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate -Dexpression=project.version -q -DforceStdout)
25-
PROJECT_VERSION=3.6.2.Final-SNAPSHOT #workaround to make it consistent with pom.xml
25+
PROJECT_VERSION=3.6.3.Final-SNAPSHOT #workaround to make it consistent with pom.xml
2626
# set dependency project version in fuzz-targets
2727
(cd fuzz-targets && $MVN versions:use-dep-version -Dincludes=$PROJECT_GROUP_ID:$PROJECT_ARTIFACT_ID -DdepVersion=$PROJECT_VERSION -DforceVersion=true)
2828
}

projects/jmh/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder-jvm
1818

19-
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \
19+
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.zip -o maven.zip && \
2020
unzip maven.zip -d $SRC/maven && \
2121
rm -rf maven.zip
2222

23-
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
23+
ENV MVN $SRC/maven/apache-maven-3.9.9/bin/mvn
2424

2525
RUN git clone https://github.com/openjdk/jmh
2626

projects/kryo/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder-jvm
1818

19-
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \
19+
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.zip -o maven.zip && \
2020
unzip maven.zip -d $SRC/maven && \
2121
rm -rf maven.zip
2222

23-
ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
23+
ENV MVN $SRC/maven/apache-maven-3.9.9/bin/mvn
2424

2525
RUN git clone --depth 1 https://github.com/EsotericSoftware/kryo
2626

projects/nginx/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder
1818

19-
RUN apt-get update && apt-get install -y libpcre3-dev zlib1g-dev mercurial ninja-build cmake liblzma-dev libz-dev binutils libtool
20-
RUN hg clone http://hg.nginx.org/nginx/
19+
RUN apt-get update && apt-get install -y libpcre3-dev zlib1g-dev ninja-build cmake liblzma-dev libz-dev binutils libtool
20+
RUN git clone --depth 1 https://github.com/nginx/nginx.git
2121
RUN git clone --depth 1 https://github.com/google/libprotobuf-mutator.git
2222
RUN git clone --depth 1 https://github.com/google/fuzzer-test-suite
2323
RUN (mkdir LPM && cd LPM && cmake ../libprotobuf-mutator -GNinja -DLIB_PROTO_MUTATOR_DOWNLOAD_PROTOBUF=ON -DLIB_PROTO_MUTATOR_TESTING=OFF -DCMAKE_BUILD_TYPE=Release && ninja)

projects/nginx/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515
#
1616
################################################################################
17-
hg import $SRC/add_fuzzers.diff --no-commit
17+
git apply $SRC/add_fuzzers.diff || patch -p1 < $SRC/add_fuzzers.diff
1818

1919
cp -r $SRC/fuzz src/
2020
cp $SRC/make_fuzzers auto/make_fuzzers

0 commit comments

Comments
 (0)