Skip to content
Snippets Groups Projects
Commit e6942644 authored by Craig Tiller's avatar Craig Tiller
Browse files

Windows builds need longer

parent 7e3c3b2e
No related branches found
No related tags found
No related merge requests found
...@@ -465,7 +465,8 @@ if len(build_configs) > 1: ...@@ -465,7 +465,8 @@ if len(build_configs) > 1:
if platform.system() == 'Windows': if platform.system() == 'Windows':
def make_jobspec(cfg, targets): def make_jobspec(cfg, targets):
return jobset.JobSpec(['make.bat', 'CONFIG=%s' % cfg] + targets, return jobset.JobSpec(['make.bat', 'CONFIG=%s' % cfg] + targets,
cwd='vsprojects', shell=True) cwd='vsprojects', shell=True,
timeout_seconds=30*60)
else: else:
def make_jobspec(cfg, targets): def make_jobspec(cfg, targets):
return jobset.JobSpec([os.getenv('MAKE', 'make'), return jobset.JobSpec([os.getenv('MAKE', 'make'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment