Skip to content

Commit 8ec9b16

Browse files
committed
release.nix: don't block on aarch64-darwin bootstrap for now
1 parent a3c6281 commit 8ec9b16

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pkgs/top-level/release.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,11 @@ let
251251
jobs.tests.stdenv.hooks.patch-shebangs.x86_64-linux
252252
*/
253253
]
254-
++ collect isDerivation jobs.stdenvBootstrapTools
254+
# FIXME: the aarch64-darwin stdenvBootstrapTools are broken
255+
# due to some locale impurity changing in macOS 15.4
256+
++ release-lib.lib.filter (j: j.system != "aarch64-darwin") (
257+
collect isDerivation jobs.stdenvBootstrapTools
258+
)
255259
++ optionals supportDarwin.x86_64 [
256260
jobs.stdenv.x86_64-darwin
257261
jobs.cargo.x86_64-darwin

0 commit comments

Comments
 (0)