From 7ce3c5f0e00dca231097fc4bf0a0e8ecd5a9d7ff Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Sun, 21 Aug 2022 16:45:10 +0200 Subject: [PATCH] projects: add uint256 (#6497) * projects: add uint256 * add Dockerfile * uint256: use go-flavoured basebuilder * uint256: fix script copy --- projects/uint256/Dockerfile | 25 +++++++++++++++++++++++++ projects/uint256/project.yaml | 10 ++++++++++ 2 files changed, 35 insertions(+) create mode 100644 projects/uint256/Dockerfile create mode 100644 projects/uint256/project.yaml diff --git a/projects/uint256/Dockerfile b/projects/uint256/Dockerfile new file mode 100644 index 000000000..57e8efbee --- /dev/null +++ b/projects/uint256/Dockerfile @@ -0,0 +1,25 @@ +# Copyright 2019 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-go + +RUN go get -u -d github.com/holiman/uint256/... + +RUN git clone --depth 1 https://github.com/holiman/uint256.git uint256 + +RUN cp uint256/oss-fuzz.sh $SRC/build.sh + +WORKDIR $SRC/ diff --git a/projects/uint256/project.yaml b/projects/uint256/project.yaml new file mode 100644 index 000000000..587ecd5e4 --- /dev/null +++ b/projects/uint256/project.yaml @@ -0,0 +1,10 @@ +homepage: "https://github.com/holiman/uint256" +language: go +primary_contact: "martin.swende@ethereum.org" +auto_ccs: + - "pawel@ethereum.org" +fuzzing_engines: + - libfuzzer +sanitizers: + - address +main_repo: 'https://github.com/holiman/uint256.git'