ci/eval: don't evaluate packages marked as broken (#409867)

This commit is contained in:
Wolfgang Walther 2025-05-28 13:36:19 +00:00 committed by GitHub
commit ea2ba8b5c1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -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,
}: }:

View file

@ -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;