Skip to content
Snippets Groups Projects
Commit 42a1bab6 authored by Nicolas Noble's avatar Nicolas Noble
Browse files

Merge pull request #27 from ctiller/faster_make

Build all targets for a config at once
parents a9ce4b46 be56a968
No related branches found
No related tags found
No related merge requests found
...@@ -75,10 +75,8 @@ def _build_and_run(check_cancelled): ...@@ -75,10 +75,8 @@ def _build_and_run(check_cancelled):
if not jobset.run( if not jobset.run(
(['make', (['make',
'-j', '%d' % (multiprocessing.cpu_count() + 1), '-j', '%d' % (multiprocessing.cpu_count() + 1),
target, 'CONFIG=%s' % cfg] + _MAKE_TEST_TARGETS
'CONFIG=%s' % cfg] for cfg in build_configs),
for cfg in build_configs
for target in _MAKE_TEST_TARGETS),
check_cancelled, maxjobs=1): check_cancelled, maxjobs=1):
return 1 return 1
......
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