From 36feeed73e17c0b17d08f5400ae768cc18bbf92b Mon Sep 17 00:00:00 2001 From: Nathaniel Brough Date: Sun, 19 Mar 2023 11:05:37 -0700 Subject: [PATCH] bloom: Initial integration --- projects/bloom/Dockerfile | 24 ++++++++++++++++++++++++ projects/bloom/project.yaml | 10 ++++++++++ 2 files changed, 34 insertions(+) create mode 100644 projects/bloom/Dockerfile create mode 100644 projects/bloom/project.yaml diff --git a/projects/bloom/Dockerfile b/projects/bloom/Dockerfile new file mode 100644 index 000000000000..3a16d46421cf --- /dev/null +++ b/projects/bloom/Dockerfile @@ -0,0 +1,24 @@ +# Copyright 2023 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +################################################################################ + +FROM gcr.io/oss-fuzz-base/base-builder-go +# TODO(@silvergasp): Switch this back to bits-and-blooms +#RUN git clone --depth 1 https://github.com/bits-and-blooms/bloom.git bloom +RUN git clone --depth 1 https://github.com/silvergasp/bloom.git bloom +RUN cp bloom/fuzz/build.sh $SRC/ +WORKDIR bloom +RUN go install github.com/AdamKorcz/go-118-fuzz-build@latest +RUN go get github.com/AdamKorcz/go-118-fuzz-build/testing diff --git a/projects/bloom/project.yaml b/projects/bloom/project.yaml new file mode 100644 index 000000000000..764b088de9f0 --- /dev/null +++ b/projects/bloom/project.yaml @@ -0,0 +1,10 @@ +homepage: "https://github.com/bits-and-blooms/bloom" +language: go +primary_contact: "lemire@gmail.com" +main_repo: "https://github.com/bits-and-blooms/bloom" +auto_ccs: + - "nathaniel.brough@gmail.com" +fuzzing_engines: + - libfuzzer +sanitizers: + - address