Merge pull request #3953 from lethalman/combined
release: don't build broken packages, don't build tested on unsupported systems
This commit is contained in:
commit
002b067750
@ -34,7 +34,7 @@ in rec {
|
|||||||
maintainers = [ pkgs.lib.maintainers.eelco pkgs.lib.maintainers.shlevy ];
|
maintainers = [ pkgs.lib.maintainers.eelco pkgs.lib.maintainers.shlevy ];
|
||||||
};
|
};
|
||||||
constituents =
|
constituents =
|
||||||
let all = x: [ x.x86_64-linux x.i686-linux ]; in
|
let all = x: map (p: x.${p}) supportedSystems; in
|
||||||
[ nixos.channel
|
[ nixos.channel
|
||||||
(all nixos.manual)
|
(all nixos.manual)
|
||||||
|
|
||||||
|
@ -123,6 +123,8 @@ rec {
|
|||||||
packagesWithMetaPlatform attrSet
|
packagesWithMetaPlatform attrSet
|
||||||
else if attrSet.recurseForRelease or false then
|
else if attrSet.recurseForRelease or false then
|
||||||
packagesWithMetaPlatform attrSet
|
packagesWithMetaPlatform attrSet
|
||||||
|
else if attrSet.meta.broken or false then
|
||||||
|
[]
|
||||||
else
|
else
|
||||||
attrSet.meta.hydraPlatforms or (attrSet.meta.platforms or []);
|
attrSet.meta.hydraPlatforms or (attrSet.meta.platforms or []);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user