Skip to content

Commit 725681b

Browse files
committed
fix bk env
1 parent 8662fb7 commit 725681b

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.buildkite/pipeline.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)