You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@warn"This is Julia $(VERSION.major).$(VERSION.minor). Some tests will be skipped or modified."VERSION
32
40
end
33
41
@@ -79,10 +87,10 @@ end
79
87
app_compiled_dir =joinpath(tmp, "MyAppCompiled")
80
88
@testsetfor incremental in (is_slow_ci ? (false,) : (true, false))
81
89
if incremental ==false
82
-
if is_julia_1_11
83
-
# On Julia 1.11, `incremental=false` is currently broken: https://github.com/JuliaLang/PackageCompiler.jl/issues/976
84
-
# So, for now, we skip the `incremental=false` tests on Julia 1.11
85
-
@warn"This is Julia 1.11; skipping incremental=false test due to known bug: https://github.com/JuliaLang/PackageCompiler.jl/issues/976"
90
+
if is_julia_1_11|| is_julia_1_12
91
+
# On Julia 1.11 and 1.12, `incremental=false` is currently broken: https://github.com/JuliaLang/PackageCompiler.jl/issues/976
92
+
# So, for now, we skip the `incremental=false` tests on Julia 1.11 and 1.12
93
+
@warn"This is Julia $(VERSION.major).$(VERSION.minor); skipping incremental=false test due to known bug: https://github.com/JuliaLang/PackageCompiler.jl/issues/976"
0 commit comments