Skip to content

Commit d83365c

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

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

test/jobs-live.jl

Lines changed: 8 additions & 4 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";
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),
420422
sysimage=true,
421-
); auth, alias="sysimage"
423+
);
424+
auth,
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)