From 2c1363c1dbbde32313c0aa5e67d0e9f582b1c19e Mon Sep 17 00:00:00 2001 From: odunbar Date: Mon, 23 Oct 2023 13:56:17 -0700 Subject: [PATCH] pipeline --- .buildkite/pipeline.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 59cc0c134..474e17a2f 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -14,6 +14,9 @@ steps: - "julia --project -e 'using Conda; Conda.add(\"matplotlib=3.7.1\")'" env: PYTHON: "" + + artifact_paths: + - *.toml agents: config: cpu queue: central @@ -34,6 +37,7 @@ steps: julia --color=yes --project=examples/Lorenz -e ' println("--- Developing Project") using Pkg; + Pkg.Registry.update() Pkg.develop(path=".") println("--- Instantiating Project") Pkg.instantiate() @@ -61,6 +65,7 @@ steps: julia --color=yes --project=examples/Emulator/GaussianProcess -e ' println("--- Developing Project") using Pkg; + Pkg.Registry.update() Pkg.develop(path=".") println("--- Instantiating Project") Pkg.instantiate() @@ -92,6 +97,7 @@ steps: julia --color=yes --project=examples/Emulator/RandomFeature -e ' println("--- Developing Project") using Pkg; + Pkg.Registry.update() Pkg.develop(path=".") println("--- Instantiating Project") Pkg.instantiate()