From 1be85a7956db779096efdc38008bac3a2ed04dfa Mon Sep 17 00:00:00 2001 From: kmdeck Date: Thu, 11 Jul 2024 10:57:02 -0700 Subject: [PATCH] add line to pipeline [skip ci] --- .buildkite/target/pipeline.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.buildkite/target/pipeline.yml b/.buildkite/target/pipeline.yml index 6d284d9504..72db3c955d 100644 --- a/.buildkite/target/pipeline.yml +++ b/.buildkite/target/pipeline.yml @@ -13,6 +13,11 @@ steps: key: "init_env" command: - "echo $$JULIA_DEPOT_PATH" + + - echo "--- Instantiate project" + - "julia --project -e 'using Pkg; Pkg.instantiate(;verbose=true)'" + - "julia --project -e 'using Pkg; Pkg.status()'" + - echo "--- Instantiate experiments" - "julia --project=.buildkite -e 'using Pkg; Pkg.develop(;path=\".\"); Pkg.instantiate(;verbose=true)'" - "julia --project=.buildkite -e 'using Pkg; Pkg.status()'"