mirror of https://github.com/google/oss-fuzz.git
Increase build timeout to 10 hours (fix #978)
This commit is contained in:
parent
21d1a4cfe6
commit
259cb3849d
|
@ -20,6 +20,8 @@ from oauth2client.client import GoogleCredentials
|
||||||
from oauth2client.service_account import ServiceAccountCredentials
|
from oauth2client.service_account import ServiceAccountCredentials
|
||||||
from googleapiclient.discovery import build
|
from googleapiclient.discovery import build
|
||||||
|
|
||||||
|
BUILD_TIMEOUT = 10 * 60 * 60
|
||||||
|
|
||||||
CONFIGURATIONS = {
|
CONFIGURATIONS = {
|
||||||
'sanitizer-address' : [ 'SANITIZER=address' ],
|
'sanitizer-address' : [ 'SANITIZER=address' ],
|
||||||
'sanitizer-memory' : [ 'SANITIZER=memory' ],
|
'sanitizer-memory' : [ 'SANITIZER=memory' ],
|
||||||
|
@ -260,7 +262,7 @@ def main():
|
||||||
|
|
||||||
build_body = {
|
build_body = {
|
||||||
'steps': get_build_steps(project_yaml, dockerfile_path),
|
'steps': get_build_steps(project_yaml, dockerfile_path),
|
||||||
'timeout': str(6 * 3600) + 's',
|
'timeout': str(BUILD_TIMEOUT) + 's',
|
||||||
'options': options,
|
'options': options,
|
||||||
'logsBucket': 'oss-fuzz-gcb-logs',
|
'logsBucket': 'oss-fuzz-gcb-logs',
|
||||||
'images': [ project_yaml['image'] ],
|
'images': [ project_yaml['image'] ],
|
||||||
|
|
Loading…
Reference in New Issue