We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb9e711 commit ca1c0acCopy full SHA for ca1c0ac
test/jobs-live.jl
@@ -413,12 +413,16 @@ end
413
end
414
415
@testset "[LIVE] JuliaHub.submit_job / sysimage" begin
416
+ script_path = joinpath(@__DIR__, "jobenvs", "sysimage")
417
job, _ = submit_test_job(
- JuliaHub.appbundle(
418
- joinpath(@__DIR__, "jobenvs", "sysimage"),
419
- "script.jl";
420
- sysimage=true,
421
- ); auth, alias="sysimage"
+ JuliaHub.script(;
+ code=read(joinpath(script_path, "script.jl"), String),
+ project=read(joinpath(script_path, "Project.toml"), String),
+ manifest=read(joinpath(script_path, "Manifest.toml"), String),
422
+ );
423
+ auth,
424
+ sysimage=true,
425
+ alias="sysimage",
426
)
427
job = JuliaHub.wait_job(job)
428
@test test_job_done_and_not_failed(job, "Completed")
0 commit comments