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 2ee808a commit e317503Copy full SHA for e317503
test/jobs-live.jl
@@ -413,12 +413,14 @@ 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, alias="sysimage"
424
)
425
job = JuliaHub.wait_job(job)
426
@test test_job_done_and_not_failed(job, "Completed")
0 commit comments