Skip to content

Commit

Permalink
remove REPL from custom sysimage (#1112)
Browse files Browse the repository at this point in the history
this should not be needed after JuliaLang/julia#56635

(cherry picked from commit 7efc3ba)
  • Loading branch information
KristofferC authored and KristofferC committed Dec 2, 2024
1 parent 6e4a4a6 commit b045200
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

julia_version = "1.10.6"
manifest_format = "2.0"
project_hash = "7ebf32dcf9a4cee2984390e78b55d94bdfcf7b2f"
project_hash = "b1db2d2904769f927c6af5a3db5e844b52ca3d7d"

[[deps.ArgTools]]
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
Expand Down
1 change: 0 additions & 1 deletion .ci/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PackageCompiler = "9b87118b-4619-50d2-8e1e-99f35a4d4d9d"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2 changes: 1 addition & 1 deletion .ci/create_sysimage_and_run_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ else
end

withenv("JULIA_IMAGE_THREADS" => ncores) do
create_sysimage(["LinearAlgebra", "Test", "Distributed", "Dates", "REPL", "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)
end

current_dir = @__DIR__
Expand Down

0 comments on commit b045200

Please sign in to comment.