From e2c1205f548a22f387b4c781a65b85309700a37e Mon Sep 17 00:00:00 2001 From: Oliver Chang Date: Thu, 5 Oct 2017 22:16:45 -0700 Subject: [PATCH] increase build timeout to 6 hours (#877) --- infra/gcb/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/gcb/build.py b/infra/gcb/build.py index 6940bd470..bb4d147ac 100755 --- a/infra/gcb/build.py +++ b/infra/gcb/build.py @@ -261,7 +261,7 @@ def main(): build_body = { 'steps': get_build_steps(project_yaml, dockerfile_path), - 'timeout': str(4 * 3600) + 's', + 'timeout': str(6 * 3600) + 's', 'options': options, 'logsBucket': 'oss-fuzz-gcb-logs', 'images': [ project_yaml['image'] ],