Docker builds need to be synchronous

There is no point in making Docker builds "parallel" as they are
executed by way of a docker build.
This commit is contained in:
Craig Tracey 2015-10-12 11:48:19 -04:00
parent 75098e9c1d
commit 3c0f88249a
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,8 @@ class BuildSpec(object):
manifest_settings['version'] = version
if build_type:
manifest_settings['build_type'] = build_type
if build_type == 'docker':
parallel = False
manifest_settings['parallel_build'] = parallel
self.settings = Settings.factory(manifest_settings)
self.projects = self._render_projects()