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 d83365cCopy full SHA for d83365c
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";
+ JuliaHub.script(;
+ 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
sysimage=true,
- ); auth, alias="sysimage"
423
+ );
424
+ auth,
425
+ alias="sysimage",
426
)
427
job = JuliaHub.wait_job(job)
428
@test test_job_done_and_not_failed(job, "Completed")
0 commit comments