mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
Merge branch 'limit-relibc-jobs' into 'master'
Limit relibc jobs See merge request redox-os/redox!1799
This commit is contained in:
commit
29d7d2c6ac
@ -4,6 +4,9 @@ git = "https://gitlab.redox-os.org/redox-os/relibc.git"
|
||||
[build]
|
||||
template = "custom"
|
||||
script = """
|
||||
# obscure crash if jobs number is too much
|
||||
COOKBOOK_MAKE_JOBS="$(( ${COOKBOOK_MAKE_JOBS} > 8 ? 8 : ${COOKBOOK_MAKE_JOBS} ))"
|
||||
|
||||
export CARGO=${CARGO:-env -u CARGO cargo}
|
||||
"${COOKBOOK_MAKE}" \
|
||||
-C "${COOKBOOK_SOURCE}" \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user