From afc5ef65a6351ebfc033bedf488bce5fac3e5150 Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Tue, 27 Jan 2026 15:38:39 +0100 Subject: [PATCH] Don't run Enyzme tests on mac CI --- test/runtests.jl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 6c74557..14d023c 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -38,8 +38,11 @@ if !is_buildkite end # mystery segfault on 1.10 for now @static if VERSION >= v"1.11.0" - @testset "enzyme" verbose = false begin - include("enzyme.jl") + is_apple_ci = Sys.isapple() && get(ENV, "CI", "false") == "true" + if !is_apple_ci + @testset "enzyme" verbose = false begin + include("enzyme.jl") + end end end end