From 3b98924bdbda3b06ca765e60f1c696f381afb326 Mon Sep 17 00:00:00 2001 From: Gregor Jasny Date: Sun, 18 Dec 2022 16:09:54 +0100 Subject: [PATCH] [resiprocate]: build with CMake (#9232) The resiprocate project switched its build system from autotools to CMake. The fuzzer build changes are [there](https://github.com/resiprocate/resiprocate/commit/9e84cc44b9a2dedefed7b1cd7183454749788410). --- projects/resiprocate/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/resiprocate/Dockerfile b/projects/resiprocate/Dockerfile index 73aeab2bc..5eb90c4f3 100644 --- a/projects/resiprocate/Dockerfile +++ b/projects/resiprocate/Dockerfile @@ -15,7 +15,7 @@ ################################################################################ FROM gcr.io/oss-fuzz-base/base-builder -RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config libfmt-dev -RUN git clone --depth 1 https://github.com/resiprocate/resiprocate.git resiprocate +RUN apt-get update && apt-get install -y cmake ninja-build pkg-config libfmt-dev +RUN git clone --depth 1 --single-branch --branch master https://github.com/resiprocate/resiprocate.git resiprocate WORKDIR resiprocate COPY build.sh $SRC/