Skip to content

Commit 1c6551b

Browse files
authored
Try to build the system image with -O0
1 parent 9f41eda commit 1c6551b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.ci/create_sysimage_and_run_tests.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ else
99
end
1010

1111
withenv("JULIA_IMAGE_THREADS" => ncores) do
12-
create_sysimage(["LinearAlgebra", "Test", "Distributed", "Dates", "Printf", "Random"]; sysimage_path=sysimage, incremental=false, filter_stdlibs=true)
12+
create_sysimage(
13+
["LinearAlgebra", "Test", "Distributed", "Dates", "Printf", "Random"];
14+
sysimage_path=sysimage,
15+
incremental=false,
16+
filter_stdlibs=true,
17+
sysimage_build_args = `--optimize=0`
18+
)
1319
end
1420

1521
current_dir = @__DIR__

0 commit comments

Comments
 (0)