[resiprocate]: build with CMake (#9232)

The resiprocate project switched its build system from autotools to
CMake. The fuzzer build changes are
[there](9e84cc44b9).
This commit is contained in:
Gregor Jasny 2022-12-18 16:09:54 +01:00 committed by GitHub
parent 3405bba3d8
commit 3b98924bdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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/