From 47c97e0b798d7c71d9846d985921d244e4025830 Mon Sep 17 00:00:00 2001 From: Gabriele Bozzola Date: Fri, 29 Mar 2024 13:44:24 -0700 Subject: [PATCH] Test output path generator --- .buildkite/pipeline.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index a0a6663ac33..4ef7128b15a 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -26,17 +26,20 @@ steps: - echo "--- Instantiate project" - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true)'" + - "julia --project -e 'using Pkg; Pkg.add(url = \"https://github.com/CliMA/ClimaUtilities.jl.git\", rev = \"gb/outputpathgenerator\")'" - "julia --project -e 'using Pkg; Pkg.precompile()'" - "julia --project -e 'using Pkg; Pkg.status()'" - echo "--- Instantiate examples" - "julia --project=examples -e 'using Pkg; Pkg.instantiate(;verbose=true)'" + - "julia --project=examples -e 'using Pkg; Pkg.add(url = \"https://github.com/CliMA/ClimaUtilities.jl.git\", rev = \"gb/outputpathgenerator\")'" - "julia --project=examples -e 'using Pkg; Pkg.precompile()'" - "julia --project=examples -e 'using CUDA; CUDA.precompile_runtime()'" - "julia --project=examples -e 'using Pkg; Pkg.status()'" - echo "--- Instantiate perf" - "julia --project=perf -e 'using Pkg; Pkg.instantiate(;verbose=true)'" + - "julia --project=perf -e 'using Pkg; Pkg.add(url = \"https://github.com/CliMA/ClimaUtilities.jl.git\", rev = \"gb/outputpathgenerator\")'" - "julia --project=perf -e 'using Pkg; Pkg.precompile()'" - "julia --project=perf -e 'using Pkg; Pkg.status()'"