diff --git a/ci/eval/outpaths.nix b/ci/eval/outpaths.nix index cd26b75ec493b..1668708719d53 100755 --- a/ci/eval/outpaths.nix +++ b/ci/eval/outpaths.nix @@ -70,7 +70,9 @@ let nixosJobs = import (path + "/nixos/release.nix") { inherit attrNamesOnly; - supportedSystems = if systems == null then [ builtins.currentSystem ] else systems; + supportedSystems = lib.filter (lib.hasSuffix "-linux") ( + if systems == null then [ builtins.currentSystem ] else systems + ); }; recurseIntoAttrs = attrs: attrs // { recurseForDerivations = true; }; @@ -104,6 +106,6 @@ in tweak ( (removeAttrs nixpkgsJobs blacklist) // { - nixosTests.simple = nixosJobs.tests.simple; + nixosTests = lib.filterAttrs (name: _: name == "simple") nixosJobs.tests; } )