ci: don't build legacyPackages
`legacyPackages` are not filtered by system and so will contain invalid derivations. If something in legacyPackages should be explicitly built add it to the `checks` output.
This commit is contained in:
parent
82fe56d5fa
commit
1cbbb78aba
@ -19,9 +19,9 @@ let
|
|||||||
);
|
);
|
||||||
|
|
||||||
systemOutputs = lib.filterAttrs
|
systemOutputs = lib.filterAttrs
|
||||||
(_: set: lib.isAttrs set
|
(name: set: lib.isAttrs set
|
||||||
&& lib.any
|
&& lib.any
|
||||||
(system: set ? ${system})
|
(system: set ? ${system} && name != "legacyPackages")
|
||||||
ciSystems
|
ciSystems
|
||||||
)
|
)
|
||||||
default.outputs;
|
default.outputs;
|
||||||
|
Loading…
Reference in New Issue
Block a user