Skip to content
Snippets Groups Projects
Commit 0c405343 authored by Filippo Cremonese's avatar Filippo Cremonese
Browse files

Cast parallelism option to str

parent 89ced621
No related branches found
No related tags found
No related merge requests found
......@@ -113,7 +113,7 @@ add_to_path:
- $ORCHESTRA_DOTDIR/support
environment:
- PATCH_DIR: $ORCHESTRA_DOTDIR/patches
- JOBS: #@ data.values.parallelism
- JOBS: #@ str(data.values.parallelism)
#! TODO: maybe patching RPATH should not be a concern of Orchestra itself, but rather a post-install phase
#! Otherwise, it should be Orchestra to provide an RPATH_PLACEHOLDER, not the other way around
- RPATH_PLACEHOLDER: #@ options["rpath_placeholder"]
......
......@@ -6,7 +6,7 @@
#@yaml/text-templated-strings
---
#@ def _options():
parallelism: #@ data.values.parallelism
parallelism: #@ str(data.values.parallelism)
python2: /usr/bin/python2
clang_release_version: #@ clang_release_version
......
#@data/values
#@overlay/match_child_default missing_ok=True
---
parallelism: "16"
parallelism: 16
build_from_source: []
nonredistributable_base_url: "https://dummydomain.com/nonredistributable/"
paths:
......
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