-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{stdenv,ninja}: add support for NIX_LOAD_LIMIT
#328677
Draft
emilazy
wants to merge
1
commit into
NixOS:staging
Choose a base branch
from
emilazy:push-snznnmvvtxos
base: staging
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -858,16 +858,28 @@ unset _HOST_PATH | |
unset _XDG_DATA_DIRS | ||
|
||
|
||
# Normalize the NIX_BUILD_CORES variable. The value might be 0, which | ||
# means that we're supposed to try and auto-detect the number of | ||
# available CPU cores at run-time. | ||
# Normalize the NIX_BUILD_CORES and NIX_LOAD_LIMIT variables. The value | ||
# might be 0, which means that we're supposed to try and auto-detect | ||
# the number of available CPU cores at run-time. | ||
|
||
_guessCores() { | ||
guess=$(nproc 2>/dev/null || true) | ||
if test "$guess" -le 0; then | ||
printf 1 | ||
else | ||
printf '%d' "$guess" | ||
fi | ||
} | ||
|
||
NIX_BUILD_CORES="${NIX_BUILD_CORES:-1}" | ||
if ((NIX_BUILD_CORES <= 0)); then | ||
guess=$(nproc 2>/dev/null || true) | ||
((NIX_BUILD_CORES = guess <= 0 ? 1 : guess)) | ||
if test "$NIX_BUILD_CORES" -le 0; then | ||
Comment on lines
874
to
+875
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you can combine these two lines like you've done with |
||
NIX_BUILD_CORES=$(_guessCores) | ||
fi | ||
if test "${NIX_LOAD_LIMIT:-1}" -le 0; then | ||
NIX_LOAD_LIMIT=$(_guessCores) | ||
fi | ||
export NIX_BUILD_CORES | ||
export NIX_LOAD_LIMIT | ||
|
||
|
||
# Prevent SSL libraries from using certificates in /etc/ssl, unless set explicitly. | ||
|
@@ -1391,6 +1403,7 @@ buildPhase() { | |
local flagsArray=( | ||
${enableParallelBuilding:+-j${NIX_BUILD_CORES}} | ||
SHELL="$SHELL" | ||
${NIX_LOAD_LIMIT:+-l${NIX_LOAD_LIMIT}} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From
|
||
) | ||
_accumFlagsArray makeFlags makeFlagsArray buildFlags buildFlagsArray | ||
|
||
|
@@ -1429,6 +1442,7 @@ checkPhase() { | |
local flagsArray=( | ||
${enableParallelChecking:+-j${NIX_BUILD_CORES}} | ||
SHELL="$SHELL" | ||
${NIX_LOAD_LIMIT:+-l${NIX_LOAD_LIMIT}} | ||
) | ||
|
||
_accumFlagsArray makeFlags makeFlagsArray | ||
|
@@ -1472,6 +1486,7 @@ installPhase() { | |
local flagsArray=( | ||
${enableParallelInstalling:+-j${NIX_BUILD_CORES}} | ||
SHELL="$SHELL" | ||
${NIX_LOAD_LIMIT:+-l${NIX_LOAD_LIMIT}} | ||
) | ||
_accumFlagsArray makeFlags makeFlagsArray installFlags installFlagsArray | ||
if [ -n "$__structuredAttrs" ]; then | ||
|
@@ -1560,6 +1575,7 @@ installCheckPhase() { | |
local flagsArray=( | ||
${enableParallelChecking:+-j${NIX_BUILD_CORES}} | ||
SHELL="$SHELL" | ||
${NIX_LOAD_LIMIT:+-l${NIX_LOAD_LIMIT}} | ||
) | ||
|
||
_accumFlagsArray makeFlags makeFlagsArray \ | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From
ninja --help
: