mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00
ci/eval: don't evaluate packages marked as broken (#409867)
This commit is contained in:
commit
ea2ba8b5c1
2 changed files with 4 additions and 2 deletions
|
@ -73,7 +73,9 @@ let
|
||||||
# The number of attributes per chunk, see ./README.md for more info.
|
# The number of attributes per chunk, see ./README.md for more info.
|
||||||
chunkSize,
|
chunkSize,
|
||||||
checkMeta ? true,
|
checkMeta ? true,
|
||||||
includeBroken ? true,
|
|
||||||
|
# Don't try to eval packages marked as broken.
|
||||||
|
includeBroken ? false,
|
||||||
# Whether to just evaluate a single chunk for quick testing
|
# Whether to just evaluate a single chunk for quick testing
|
||||||
quickTest ? false,
|
quickTest ? false,
|
||||||
}:
|
}:
|
||||||
|
|
|
@ -27,7 +27,7 @@ let
|
||||||
config = {
|
config = {
|
||||||
allowAliases = false;
|
allowAliases = false;
|
||||||
allowBroken = includeBroken;
|
allowBroken = includeBroken;
|
||||||
allowUnfree = false;
|
allowUnfree = true;
|
||||||
allowInsecurePredicate = x: true;
|
allowInsecurePredicate = x: true;
|
||||||
checkMeta = checkMeta;
|
checkMeta = checkMeta;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue