Skip to content

Commit

Permalink
Allow remote unpacking for projects that fill the disk.
Browse files Browse the repository at this point in the history
a76b922
Didn't completely work. These projects need a lot more disk. Let's try another
solution.
  • Loading branch information
jonathanmetzman committed Jan 15, 2025
1 parent a76b922 commit 7811ee4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/clusterfuzz/_internal/cron/project_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,8 @@ def _sync_job(self, project, info, corpus_bucket_name, quarantine_bucket_name,
engine=template.engine,
project_name=base_project_name,
disk_size_gb=oss_fuzz_gb)
if oss_fuzz_gb is not None:
job.envrionment_string += 'ALLOW_UNPACK_OVER_HTTP = True\n'

# Centipede requires a separate build of the sanitized binary.
if template.engine == 'centipede':
Expand Down

0 comments on commit 7811ee4

Please sign in to comment.