We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cecf025 commit 3482af8Copy full SHA for 3482af8
.ci/create_sysimage_and_run_tests.jl
@@ -13,7 +13,11 @@ withenv("JULIA_IMAGE_THREADS" => ncores) do
13
end
14
15
current_dir = @__DIR__
16
-cmd = """Base.runtests(["LinearAlgebra"]; propagate_project=true, ncores=$ncores)"""
+if VERSION >= v"1.12"
17
+ cmd = """Base.runtests(["LinearAlgebra"]; propagate_project=true, ncores=$ncores)"""
18
+else
19
+ cmd = """Base.runtests(["LinearAlgebra"]; ncores=$ncores)"""
20
+end
21
withenv("JULIA_NUM_THREADS" => 1) do
22
run(`$(Base.julia_cmd()) --sysimage=$sysimage --project=$current_dir -e $cmd`)
23
0 commit comments