Skip to content

Commit

Permalink
Try to build the system image with -O0
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasnoack authored Nov 28, 2024
1 parent 9f41eda commit 1c6551b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .ci/create_sysimage_and_run_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,13 @@ else
end

withenv("JULIA_IMAGE_THREADS" => ncores) do
create_sysimage(["LinearAlgebra", "Test", "Distributed", "Dates", "Printf", "Random"]; sysimage_path=sysimage, incremental=false, filter_stdlibs=true)
create_sysimage(
["LinearAlgebra", "Test", "Distributed", "Dates", "Printf", "Random"];
sysimage_path=sysimage,
incremental=false,
filter_stdlibs=true,
sysimage_build_args = `--optimize=0`
)
end

current_dir = @__DIR__
Expand Down

0 comments on commit 1c6551b

Please sign in to comment.