From e51d3e3ea1b19e672c5e33d1365965b0527ad90b Mon Sep 17 00:00:00 2001 From: AdamKorcz <44787359+AdamKorcz@users.noreply.github.com> Date: Tue, 5 Jan 2021 16:26:43 +0000 Subject: [PATCH] [igraph] Initial integration (#4877) --- projects/igraph/Dockerfile | 23 +++++++++++++++++++++++ projects/igraph/project.yaml | 10 ++++++++++ 2 files changed, 33 insertions(+) create mode 100644 projects/igraph/Dockerfile create mode 100644 projects/igraph/project.yaml diff --git a/projects/igraph/Dockerfile b/projects/igraph/Dockerfile new file mode 100644 index 000000000..c1d2c005e --- /dev/null +++ b/projects/igraph/Dockerfile @@ -0,0 +1,23 @@ +# Copyright 2018 Google Inc. +# +# 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 +RUN apt-get update && apt-get install -y make autoconf automake libtool \ + pkg-config cmake bison flex +RUN git clone --depth 1 --branch develop https://github.com/igraph/igraph +WORKDIR igraph +RUN cp $SRC/igraph/fuzzing/build.sh $SRC/build.sh + diff --git a/projects/igraph/project.yaml b/projects/igraph/project.yaml new file mode 100644 index 000000000..aedf56bb2 --- /dev/null +++ b/projects/igraph/project.yaml @@ -0,0 +1,10 @@ +homepage: "https://github.com/igraph/igraph" +main_repo: "https://github.com/igraph/igraph" +language: c +primary_contact: "szhorvat@gmail.com" +auto_ccs: + - "Adam@adalogics.com" + - "ntamas@gmail.com" +sanitizers: + - address + - undefined