From 1cbbb78aba5a78f36d444bc1d8c7ca86418837e7 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Fri, 26 Mar 2021 18:29:48 -0600 Subject: [PATCH] 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. --- nix/ci.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/ci.nix b/nix/ci.nix index d3049d51..5152cd26 100644 --- a/nix/ci.nix +++ b/nix/ci.nix @@ -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;