Skip to content

Commit d9747d4

Browse files
authored
Disable boringssl OSS-Fuzz -> OSV import (#2201)
Fixes #2178. BoringSSL maintainers would like more control / vetting of entries. Disable the import for now until we have a better system in place to enable that.
1 parent dd79353 commit d9747d4

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

docker/worker/oss_fuzz.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
# Large projects which take way too long to build.
4040
# TODO(ochang): Don't hardcode this.
4141
PROJECT_DENYLIST = {
42+
'boringssl', # https://github.com/google/osv.dev/issues/2178
4243
'ffmpeg',
4344
'imagemagick',
4445
'libreoffice',

docker/worker/worker.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,6 @@
4848
MAX_LEASE_DURATION = 6 * 60 * 60 # 4 hours.
4949
_TIMEOUT_SECONDS = 60
5050

51-
# Large projects which take way too long to build.
52-
# TODO(ochang): Don't hardcode this.
53-
PROJECT_DENYLIST = {
54-
'ffmpeg',
55-
'imagemagick',
56-
'libreoffice',
57-
}
58-
59-
REPO_DENYLIST = {
60-
'https://github.com/google/AFL.git',
61-
}
62-
6351
_ECOSYSTEM_PUSH_TOPICS = {
6452
'PyPI': 'pypi-bridge',
6553
}

0 commit comments

Comments
 (0)