hydra-evaluate-jobset: assert it logs errored constituents properly

This commit is contained in:
Graham Christensen
2022-03-19 14:35:30 -04:00
parent 25f6bae847
commit 0c51de6334
2 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,19 @@
with import ./config.nix;
rec {
constituentA = null;
constituentB = mkDerivation {
name = "empty-dir-B";
builder = ./empty-dir-builder.sh;
};
mixed_aggregate = mkDerivation {
name = "mixed_aggregate";
_hydraAggregate = true;
constituents = [
"constituentA"
constituentB
];
builder = ./empty-dir-builder.sh;
};
}