Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sbcl: fix check phase for darwin 24.05 only #361072

Open
wants to merge 1 commit into
base: staging-24.05
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pkgs/development/compilers/sbcl/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,13 @@ stdenv.mkDerivation (self: rec {
# Heisentest, sometimes fails on ofBorg, would rather just disable it than
# have it block a release.
"futex-wait.test.sh"
] ++ lib.optionals (stdenv.hostPlatform.isDarwin) [
# This only fails on darwin in 24.05 since
# 57b36ea5c83a1841b174ec6cd5e423439fe9d7a0. It’s exclusively a 24.05
# problem.
#
# https://github.com/NixOS/nixpkgs/pull/359214
"run-program.test.sh"
];
patches = [
# Support the NIX_SBCL_DYNAMIC_SPACE_SIZE envvar. Upstream SBCL didn’t want
Expand Down