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

Hopefully speed up Jenkins builds

parent dfc3eeee
Branches
Tags
No related merge requests found
......@@ -477,10 +477,14 @@ if len(build_configs) > 1:
if platform.system() == 'Windows':
def make_jobspec(cfg, targets):
extra_args = []
if args.travis:
extra_args.extend(["/m", "/p:DebugSymbols=false", "/p:DebugType=None"])
return [
jobset.JobSpec(['vsprojects\\build.bat',
'vsprojects\\%s.sln' % target,
'/p:Configuration=%s' % _WINDOWS_CONFIG[cfg]],
'/p:Configuration=%s' % _WINDOWS_CONFIG[cfg]] +
extra_args,
shell=True, timeout_seconds=90*60)
for target in targets]
else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment