[aspell] Add GNUAspell support to OSS Fuzz (#2632)

* Add GNUAspell support to OSS Fuzz

* Set @kevina's primary address to gnu account

* Temporarily point at cmeister2 fork of Aspell to pass CI
This commit is contained in:
Max Dymond 2019-07-29 18:52:42 +01:00 committed by Max Moroz
parent 535f9260e2
commit 8adb1a1fcc
3 changed files with 53 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# 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
MAINTAINER cmeister2@gmail.com
# RUN git clone --depth 1 https://github.com/gnuaspell/aspell.git /src/aspell
RUN git clone --depth 1 -b cmeister2/ossfuzz https://github.com/cmeister2/aspell.git /src/aspell
WORKDIR $SRC/aspell
COPY build.sh $SRC/

19
projects/aspell/build.sh Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash -eu
# 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.
#
################################################################################
# Run the OSS-Fuzz script in the project.
./ossfuzz/ossfuzz.sh

View File

@ -0,0 +1,10 @@
homepage: "https://github.com/GNUAspell/aspell"
primary_contact: "kevina@gnu.org"
auto_ccs:
- "kevinatkn@gmail.com"
- "cmeister2@gmail.com"
sanitizers:
- address
- undefined
- memory:
experimental: true