Skip to content

Commit

Permalink
release.nix: don't block on aarch64-darwin bootstrap tools
Browse files Browse the repository at this point in the history
They haven't worked for several months, so let's not start blocking now:
https://hydra.nixos.org/job/nixpkgs/nixpkgs-unstable-aarch64-darwin/stdenvBootstrapTools.aarch64-darwin.dist
  • Loading branch information
vcunat committed Jan 5, 2023
1 parent 9be23ea commit 4d5d4a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkgs/top-level/release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ let
jobs.tests.patch-shebangs.x86_64-linux
*/
]
++ lib.collect lib.isDerivation jobs.stdenvBootstrapTools
# FIXME: reintroduce aarch64-darwin after this builds again
++ lib.collect lib.isDerivation (removeAttrs jobs.stdenvBootstrapTools [ "aarch64-darwin" ])
++ lib.optionals supportDarwin.x86_64 [
jobs.stdenv.x86_64-darwin
jobs.cargo.x86_64-darwin
Expand Down

0 comments on commit 4d5d4a7

Please sign in to comment.