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:
Timothy DeHerrera 2021-03-26 18:29:48 -06:00
parent 82fe56d5fa
commit 1cbbb78aba
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -19,9 +19,9 @@ let
);
systemOutputs = lib.filterAttrs
(_: set: lib.isAttrs set
(name: set: lib.isAttrs set
&& lib.any
(system: set ? ${system})
(system: set ? ${system} && name != "legacyPackages")
ciSystems
)
default.outputs;