File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,17 @@ steps:
2828 - julia --check-bounds=yes -e 'using TOML; @assert TOML.parsefile(".buildkite/Manifest-v1.11.toml")["deps"]["ClimaAtmos"][1]["path"] == ".."'
2929
3030 - echo "--- Instantiate .buildkite"
31- - " julia --project=.buildkite -e 'using Pkg; Pkg.instantiate(;verbose=true); Pkg.precompile(;strict=true); using CUDA; CUDA.precompile_runtime(); Pkg.status()'"
32-
31+ - julia --project=.buildkite -e '
32+
33+ using Pkg;
34+ Pkg.Registry.update();
35+ Pkg.add(PackageSpec(name="ClimaCore", url="https://github.com/CliMA/ClimaCore.jl", rev="ne/fd_grid"));
36+ Pkg.add(PackageSpec(name="ClimaUtilities", url="https://github.com/CliMA/ClimaUtilities.jl", rev="main"));
37+ Pkg.instantiate();
38+ Pkg.precompile(; strict=true);
39+ using CUDA; CUDA.precompile_runtime();
40+ Pkg.status()
41+ '
3342 agents:
3443 slurm_cpus_per_task: 8
3544 slurm_gpus: 1
You can’t perform that action at this time.
0 commit comments