summaryrefslogtreecommitdiff
path: root/buildstream/_frontend/app.py
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-07-14 20:13:48 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2019-07-14 20:23:27 +0900
commitc13024b4ae801dbbf2d2106ff1c7850edc675722 (patch)
tree80f804598d8e64d0761dcffd558f0bbf74d92fa1 /buildstream/_frontend/app.py
parent32a4ebbfa9045c305fae4b701947cf6386d121c6 (diff)
downloadbuildstream-c13024b4ae801dbbf2d2106ff1c7850edc675722.tar.gz
_frontend: Added toplevel `--max-jobs` configuration
While this is currently only relevant for `bst build`, it is a current implementation detail that user configuration which gets overridden by command line options must use toplevel options. This patch allows invocations such as the following to override the max-jobs: bst --max-jobs 16 build target.bst This also updates the completions test to expect the new toplevel option. This is a part of #1033
Diffstat (limited to 'buildstream/_frontend/app.py')
-rw-r--r--buildstream/_frontend/app.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildstream/_frontend/app.py b/buildstream/_frontend/app.py
index f48d9cbe1..cb9870c4d 100644
--- a/buildstream/_frontend/app.py
+++ b/buildstream/_frontend/app.py
@@ -192,6 +192,7 @@ class App():
'fetchers': 'sched_fetchers',
'builders': 'sched_builders',
'pushers': 'sched_pushers',
+ 'max_jobs': 'build_max_jobs',
'network_retries': 'sched_network_retries'
}
for cli_option, context_attr in override_map.items():