Skip to content

Commit ca1c0ac

Browse files
committed
do not submit appbundle for sysimage test
1 parent cb9e711 commit ca1c0ac

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

test/jobs-live.jl

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -413,12 +413,16 @@ end
413413
end
414414

415415
@testset "[LIVE] JuliaHub.submit_job / sysimage" begin
416+
script_path = joinpath(@__DIR__, "jobenvs", "sysimage")
416417
job, _ = submit_test_job(
417-
JuliaHub.appbundle(
418-
joinpath(@__DIR__, "jobenvs", "sysimage"),
419-
"script.jl";
420-
sysimage=true,
421-
); auth, alias="sysimage"
418+
JuliaHub.script(;
419+
code=read(joinpath(script_path, "script.jl"), String),
420+
project=read(joinpath(script_path, "Project.toml"), String),
421+
manifest=read(joinpath(script_path, "Manifest.toml"), String),
422+
);
423+
auth,
424+
sysimage=true,
425+
alias="sysimage",
422426
)
423427
job = JuliaHub.wait_job(job)
424428
@test test_job_done_and_not_failed(job, "Completed")

0 commit comments

Comments
 (0)