projects: add uint256 (#6497)

* projects: add uint256

* add Dockerfile

* uint256: use go-flavoured basebuilder

* uint256: fix script copy
This commit is contained in:
Martin Holst Swende 2022-08-21 16:45:10 +02:00 committed by GitHub
parent 7c18e1e5d6
commit 7ce3c5f0e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View File

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

View File

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