etcd: clone the raft repo when building etcd (#9374)

The `raft` package was moved into a dedicated repo
https://github.com/etcd-io/raft

This PR is currently a draft because we should wait until the
corresponding fix is merged in `cncf-fuzzing`
(https://github.com/cncf/cncf-fuzzing/pull/271)
This commit is contained in:
Khaled Yakdan 2023-01-08 14:19:41 -08:00 committed by GitHub
parent dfede1ec34
commit b37a2d948d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@
FROM gcr.io/oss-fuzz-base/base-builder-go
RUN git clone --depth 1 https://github.com/etcd-io/etcd
RUN git clone --depth 1 https://github.com/etcd-io/raft
RUN git clone --depth 1 https://github.com/cncf/cncf-fuzzing
COPY build.sh $SRC/
WORKDIR $SRC/etcd