ci/eval: remove unused checkMeta argument

This should always be set anyways.

+1 -2
ci/eval/attrpaths.nix
···
{
lib ? import (path + "/lib"),
trace ? false,
-
checkMeta ? true,
path ? ./../..,
}:
let
···
lib.traceIf trace "** ${lib.showAttrPath path}" result;
outpaths = import ./outpaths.nix {
-
inherit checkMeta path;
+
inherit path;
attrNamesOnly = true;
};
+1 -2
ci/eval/chunk.nix
···
attrpathFile,
chunkSize,
myChunk,
-
checkMeta,
includeBroken,
systems,
}:
···
unfiltered = import ./outpaths.nix {
inherit path;
-
inherit checkMeta includeBroken systems;
+
inherit includeBroken systems;
};
# Turns the unfiltered recursive attribute set into one that is limited to myAttrpaths
-2
ci/eval/default.nix
···
attrpathFile ? "${attrpathsSuperset { inherit evalSystem; }}/paths.json",
# The number of attributes per chunk, see ./README.md for more info.
chunkSize ? 5000,
-
checkMeta ? true,
# Don't try to eval packages marked as broken.
includeBroken ? false,
···
--arg myChunk "$myChunk" \
--arg attrpathFile "${attrpathFile}" \
--arg systems "[ \"$system\" ]" \
-
--arg checkMeta ${lib.boolToString checkMeta} \
--arg includeBroken ${lib.boolToString includeBroken} \
-I ${nixpkgs} \
-I ${attrpathFile} \
+2 -3
ci/eval/outpaths.nix
···
#!/usr/bin/env nix-shell
# When using as a callable script, passing `--argstr path some/path` overrides $PWD.
-
#!nix-shell -p nix -i "nix-env -qaP --no-name --out-path --arg checkMeta true -f ci/eval/outpaths.nix"
+
#!nix-shell -p nix -i "nix-env -qaP --no-name --out-path -f ci/eval/outpaths.nix"
{
-
checkMeta,
includeBroken ? true, # set this to false to exclude meta.broken packages from the output
path ? ./../..,
···
allowUnfree = true;
allowInsecurePredicate = x: true;
allowVariants = !attrNamesOnly;
-
checkMeta = checkMeta;
+
checkMeta = true;
handleEvalIssue =
reason: errormsg: