pkgs/top-level/release-outpaths.nix: omit attrnames which fail with "unsupported"

We have packages that use `meta.platforms = []` as a sort of synonym
for `broken = true`. Without this commit, the attrnames for those
jobs will end up in the list of attrnames which are expected to
build, even though they are not expected to build.

+2
+2
pkgs/top-level/release-outpaths.nix
··· 50 50 # hydra does not build unfree packages, so tons of them are broken yet not marked meta.broken. 51 51 else if !includeBroken && builtins.elem reason [ "broken" "unfree" ] 52 52 then throw "broken" 53 + else if builtins.elem reason [ "unsupported" ] 54 + then throw "unsupported" 53 55 else true; 54 56 55 57 inHydra = true;