From a61523820804aae7d1abbfb0cef30cd0d3c2c08d Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 12:44:26 +0100 Subject: [PATCH 01/17] attempt to use julia plugin for buildkite --- .buildkite/pipeline.yml | 95 ++++++++++++++++++++++++++--------------- 1 file changed, 60 insertions(+), 35 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 33961c0fb..291655b61 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,55 +5,80 @@ env: DATADEPS_ALWAYS_ACCEPT: true steps: - - label: ":building_construction: initialize environment" - key: "init" - commands: - - "wget -N -P $JULIA_PATH https://julialang-s3.julialang.org/bin/linux/x64/$JULIA_MINOR_VERSION/julia-$JULIA_VERSION-linux-x86_64.tar.gz" - - "tar xf $JULIA_PATH/julia-$JULIA_VERSION-linux-x86_64.tar.gz -C $JULIA_PATH" - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia -O0 --color=yes --project -e 'using Pkg; Pkg.instantiate(; verbose=true)'" - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia -O0 --color=yes --project -e 'using Pkg; Pkg.build()'" - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia -O0 --color=yes --project -e 'using Pkg; Pkg.precompile()'" - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia -O0 --color=yes --project -e 'using Pkg; Pkg.status()'" - notify: - - github_commit_status: - context: "Initialise environment" + - label: ":building_construction: :speedboat: gpu setup" + key: "init_gpu" + env: + TEST_GROUP: "none" + plugins: + - JuliaCI/julia#v1: + version: "1.10" + - JuliaCI/julia-test#v1: ~ + agents: + queue: Oceananigans + architecture: GPU + + - label: ":building_construction: :rowboat: cpu setup" + key: "init_cpu" + env: + TEST_GROUP: "none" + CUDA_VISIBLE_DEVICES: "-1" + plugins: + - JuliaCI/julia#v1: + version: "1.10" + - JuliaCI/julia-test#v1: + coverage: true + agents: + queue: Oceananigans + architecture: CPU - label: ":speedboat: GPU unit tests" - commands: - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia -O0 --color=yes --project -e 'using Pkg; Pkg.Registry.update(); Pkg.test()'" - depends_on: "init" + plugins: + - JuliaCI/julia#v1: + version: "1.10" + - JuliaCI/julia-test#v1: + update_registry: false + coverage: false + agents: + queue: Oceananigans + architecture: GPU + depends_on: "init_gpu" notify: - github_commit_status: context: "GPU tests" - + if: !build.pull_request.draft + - label: ":rowboat: CPU unit tests" env: - CUDA_VISIBLE_DEVICES: "-1" - commands: - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia -O0 --color=yes --project -e 'using Pkg; Pkg.Registry.update(); Pkg.test()'" - depends_on: "init" + CUDA_VISIBLE_DEVICES: "-1" + plugins: + - JuliaCI/julia#v1: + version: "1.10" + - JuliaCI/julia-test#v1: + update_registry: false + coverage: true + agents: + queue: Oceananigans + architecture: CPU + depends_on: "init_cpu" notify: - github_commit_status: context: "CPU tests" - + if: !build.pull_request.draft + - label: ":docusaurus: Documentation" env: CUDA_VISIBLE_DEVICES: "-1" JULIA_DEBUG: "Documenter" - TMPDIR: "/var/lib/buildkite-agent/tmp" - commands: - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia --color=yes --project=docs/ -e 'using Pkg; Pkg.Registry.update(); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'" - - "$JULIA_PATH/julia-$JULIA_VERSION/bin/julia --color=yes --project=docs/ docs/make.jl" - depends_on: "init" + plugins: + - JuliaCI/julia#v1: + version: "1.9" + command: | + - "julia --color=yes --project=docs/ docs/make.jl" + agents: + queue: Oceananigans + architecture: CPU + depends_on: "init_cpu" notify: - github_commit_status: context: "Documentation" - - - wait: ~ - continue_on_failure: true - - - label: ":skeleton-dance: clean up environment" - command: "rm -rf $JULIA_PATH" - notify: - - github_commit_status: - context: "Clean up" + if: !build.pull_request.draft From b800b03e51367661d6287f2317e0d3c213822454 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 12:47:45 +0100 Subject: [PATCH 02/17] wrong version for docs --- .buildkite/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 291655b61..4b41a4f4d 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -71,7 +71,7 @@ steps: JULIA_DEBUG: "Documenter" plugins: - JuliaCI/julia#v1: - version: "1.9" + version: "1.10" command: | - "julia --color=yes --project=docs/ docs/make.jl" agents: From 413dcf14104c130c78e6120d79ed1cc7f0b94d99 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 12:49:36 +0100 Subject: [PATCH 03/17] accidentally was specifiying oceananigans agents --- .buildkite/pipeline.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 4b41a4f4d..6d493b018 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -13,9 +13,6 @@ steps: - JuliaCI/julia#v1: version: "1.10" - JuliaCI/julia-test#v1: ~ - agents: - queue: Oceananigans - architecture: GPU - label: ":building_construction: :rowboat: cpu setup" key: "init_cpu" @@ -27,9 +24,6 @@ steps: version: "1.10" - JuliaCI/julia-test#v1: coverage: true - agents: - queue: Oceananigans - architecture: CPU - label: ":speedboat: GPU unit tests" plugins: @@ -38,9 +32,6 @@ steps: - JuliaCI/julia-test#v1: update_registry: false coverage: false - agents: - queue: Oceananigans - architecture: GPU depends_on: "init_gpu" notify: - github_commit_status: @@ -56,9 +47,6 @@ steps: - JuliaCI/julia-test#v1: update_registry: false coverage: true - agents: - queue: Oceananigans - architecture: CPU depends_on: "init_cpu" notify: - github_commit_status: @@ -74,9 +62,6 @@ steps: version: "1.10" command: | - "julia --color=yes --project=docs/ docs/make.jl" - agents: - queue: Oceananigans - architecture: CPU depends_on: "init_cpu" notify: - github_commit_status: From 90a6483eb804763749d746d90a4a4a45b759242f Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 12:57:08 +0100 Subject: [PATCH 04/17] don't build on testgroup = none --- test/runtests.jl | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 04cad701e..6d7bf58e7 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,17 +1,21 @@ include("dependencies_for_runtests.jl") -include("test_utils.jl") -include("test_light.jl") -include("test_slatissima.jl") -include("test_LOBSTER.jl") -include("test_NPZD.jl") -include("test_gasexchange.jl") -include("test_sediments.jl") +group = get(ENV, "TEST_GROUP", :all) |> Symbol -if architecture == CPU() - include("test_boxmodel.jl") # box models (probably) don't work on GPU, and it wouldn't be faster anyway -end +if group == :all + include("test_utils.jl") + include("test_light.jl") + include("test_slatissima.jl") + include("test_LOBSTER.jl") + include("test_NPZD.jl") + include("test_gasexchange.jl") + include("test_sediments.jl") + + if architecture == CPU() + include("test_boxmodel.jl") # box models (probably) don't work on GPU, and it wouldn't be faster anyway + end -architecture == CPU() && @testset "Doctests" begin - doctest(OceanBioME) + architecture == CPU() && @testset "Doctests" begin + doctest(OceanBioME) + end end From 5d720ab5a9954ff49253c5e33db597455a418df4 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 12:59:19 +0100 Subject: [PATCH 05/17] why docs not work --- .buildkite/pipeline.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 6d493b018..9f2f0d8da 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,7 +5,7 @@ env: DATADEPS_ALWAYS_ACCEPT: true steps: - - label: ":building_construction: :speedboat: gpu setup" + - label: ":construction: gpu setup" key: "init_gpu" env: TEST_GROUP: "none" @@ -14,7 +14,7 @@ steps: version: "1.10" - JuliaCI/julia-test#v1: ~ - - label: ":building_construction: :rowboat: cpu setup" + - label: ":building_construction: cpu setup" key: "init_cpu" env: TEST_GROUP: "none" @@ -25,7 +25,7 @@ steps: - JuliaCI/julia-test#v1: coverage: true - - label: ":speedboat: GPU unit tests" + - label: ":speedboat: GPU tests" plugins: - JuliaCI/julia#v1: version: "1.10" @@ -35,10 +35,10 @@ steps: depends_on: "init_gpu" notify: - github_commit_status: - context: "GPU tests" + context: ":speedboat: GPU tests" if: !build.pull_request.draft - - label: ":rowboat: CPU unit tests" + - label: ":rowboat: CPU tests" env: CUDA_VISIBLE_DEVICES: "-1" plugins: @@ -50,7 +50,7 @@ steps: depends_on: "init_cpu" notify: - github_commit_status: - context: "CPU tests" + context: ":rowboat: CPU tests" if: !build.pull_request.draft - label: ":docusaurus: Documentation" @@ -60,10 +60,10 @@ steps: plugins: - JuliaCI/julia#v1: version: "1.10" - command: | + command: - "julia --color=yes --project=docs/ docs/make.jl" depends_on: "init_cpu" notify: - github_commit_status: - context: "Documentation" + context: ":docusaurus: Documentation" if: !build.pull_request.draft From b0ba93a7cf8814ca2bcc4f78e00da13ed7750edb Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 13:00:02 +0100 Subject: [PATCH 06/17] remove emojis from report --- .buildkite/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 9f2f0d8da..8f67f9846 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -35,7 +35,7 @@ steps: depends_on: "init_gpu" notify: - github_commit_status: - context: ":speedboat: GPU tests" + context: "GPU tests" if: !build.pull_request.draft - label: ":rowboat: CPU tests" @@ -50,7 +50,7 @@ steps: depends_on: "init_cpu" notify: - github_commit_status: - context: ":rowboat: CPU tests" + context: "CPU tests" if: !build.pull_request.draft - label: ":docusaurus: Documentation" @@ -65,5 +65,5 @@ steps: depends_on: "init_cpu" notify: - github_commit_status: - context: ":docusaurus: Documentation" + context: "Documentation" if: !build.pull_request.draft From 66544895f81402fa2fdc7517a0bab5d0185d0870 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 13:02:21 +0100 Subject: [PATCH 07/17] remove redundant setup steps + instantiate docs --- .buildkite/pipeline.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 8f67f9846..6187ba369 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,26 +5,6 @@ env: DATADEPS_ALWAYS_ACCEPT: true steps: - - label: ":construction: gpu setup" - key: "init_gpu" - env: - TEST_GROUP: "none" - plugins: - - JuliaCI/julia#v1: - version: "1.10" - - JuliaCI/julia-test#v1: ~ - - - label: ":building_construction: cpu setup" - key: "init_cpu" - env: - TEST_GROUP: "none" - CUDA_VISIBLE_DEVICES: "-1" - plugins: - - JuliaCI/julia#v1: - version: "1.10" - - JuliaCI/julia-test#v1: - coverage: true - - label: ":speedboat: GPU tests" plugins: - JuliaCI/julia#v1: @@ -61,6 +41,7 @@ steps: - JuliaCI/julia#v1: version: "1.10" command: + - "julia --color=yes --project=docs/ -e 'using Pkg; Pkg.Registry.update(); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'" - "julia --color=yes --project=docs/ docs/make.jl" depends_on: "init_cpu" notify: From ab2a6041fa06c914692fb02112e6178063cd4b08 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 13:03:03 +0100 Subject: [PATCH 08/17] removed depends on stuff --- .buildkite/pipeline.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 6187ba369..47da7691b 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -12,7 +12,6 @@ steps: - JuliaCI/julia-test#v1: update_registry: false coverage: false - depends_on: "init_gpu" notify: - github_commit_status: context: "GPU tests" @@ -27,7 +26,6 @@ steps: - JuliaCI/julia-test#v1: update_registry: false coverage: true - depends_on: "init_cpu" notify: - github_commit_status: context: "CPU tests" @@ -43,7 +41,6 @@ steps: command: - "julia --color=yes --project=docs/ -e 'using Pkg; Pkg.Registry.update(); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'" - "julia --color=yes --project=docs/ docs/make.jl" - depends_on: "init_cpu" notify: - github_commit_status: context: "Documentation" From c4b73616aca846905f8d7b09d89e707d37a65cfd Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 13:04:02 +0100 Subject: [PATCH 09/17] why cpu one fail sometimes? --- .buildkite/pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 47da7691b..8a9bfaa43 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -10,7 +10,7 @@ steps: - JuliaCI/julia#v1: version: "1.10" - JuliaCI/julia-test#v1: - update_registry: false + update_registry: true coverage: false notify: - github_commit_status: @@ -24,7 +24,7 @@ steps: - JuliaCI/julia#v1: version: "1.10" - JuliaCI/julia-test#v1: - update_registry: false + update_registry: true coverage: true notify: - github_commit_status: From c894f9feaeab9970bdb7402d7fe51f266d986058 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:31:16 +0100 Subject: [PATCH 10/17] hopeflly filtered the new paths now --- docs/make.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/make.jl b/docs/make.jl index 66bf1f6dd..6b775a0cb 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -32,7 +32,8 @@ examples = [ example_scripts = [ filename * ".jl" for (title, filename) in examples ] -replace_silly_warning(content) = replace(content, r"┌ Warning:.*\s+└ @ JLD2 ~/\.julia/packages/JLD2/.*/reconstructing_datatypes\.jl.*\n" => "") +replace_silly_warning(content) = replace(content, r"┌ Warning:.*\s+└ @ JLD2 ~/\.julia/packages/JLD2/.*/reconstructing_datatypes\.jl.*\n" => "", + r"┌ Warning:.*\s+└ @ JLD2 ~/.*/packages/JLD2/.*/reconstructing_datatypes\.jl.*\n" => "") for example in example_scripts example_filepath = joinpath(EXAMPLES_DIR, example) From 16541f733700e4d730aca48227568f59436bc924 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:46:35 +0100 Subject: [PATCH 11/17] maybe this will work --- .buildkite/pipeline.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 8a9bfaa43..805fcfca0 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,10 +5,16 @@ env: DATADEPS_ALWAYS_ACCEPT: true steps: - - label: ":speedboat: GPU tests" + -label: ":construction: setup julia" plugins: - JuliaCI/julia#v1: version: "1.10" + notify: + - github_commit_status: + context: "Setup test environment" + + - label: ":speedboat: GPU tests" + plugins: - JuliaCI/julia-test#v1: update_registry: true coverage: false @@ -21,8 +27,6 @@ steps: env: CUDA_VISIBLE_DEVICES: "-1" plugins: - - JuliaCI/julia#v1: - version: "1.10" - JuliaCI/julia-test#v1: update_registry: true coverage: true @@ -35,9 +39,6 @@ steps: env: CUDA_VISIBLE_DEVICES: "-1" JULIA_DEBUG: "Documenter" - plugins: - - JuliaCI/julia#v1: - version: "1.10" command: - "julia --color=yes --project=docs/ -e 'using Pkg; Pkg.Registry.update(); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'" - "julia --color=yes --project=docs/ docs/make.jl" From b88a679744dc61bd60412a9517b1ab188a5aac4e Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:48:03 +0100 Subject: [PATCH 12/17] depends on now --- .buildkite/pipeline.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 805fcfca0..5ab419f03 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,7 +5,8 @@ env: DATADEPS_ALWAYS_ACCEPT: true steps: - -label: ":construction: setup julia" + - label: ":construction: setup julia" + key: "init" plugins: - JuliaCI/julia#v1: version: "1.10" @@ -14,6 +15,7 @@ steps: context: "Setup test environment" - label: ":speedboat: GPU tests" + depends_on: "init" plugins: - JuliaCI/julia-test#v1: update_registry: true @@ -24,6 +26,7 @@ steps: if: !build.pull_request.draft - label: ":rowboat: CPU tests" + depends_on: "init" env: CUDA_VISIBLE_DEVICES: "-1" plugins: @@ -36,6 +39,7 @@ steps: if: !build.pull_request.draft - label: ":docusaurus: Documentation" + depends_on: "init" env: CUDA_VISIBLE_DEVICES: "-1" JULIA_DEBUG: "Documenter" From 4c573781380cf686f728f1b608f37092a0a4838a Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:49:43 +0100 Subject: [PATCH 13/17] don't keep stuff for now --- .buildkite/pipeline.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 5ab419f03..47a7ff84d 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -10,6 +10,7 @@ steps: plugins: - JuliaCI/julia#v1: version: "1.10" + persist_depot_dirs: "" notify: - github_commit_status: context: "Setup test environment" From 4cac2cd3b1921b705d5ef0ea5b3ebb81d599da23 Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:51:13 +0100 Subject: [PATCH 14/17] turns out you have to have a command --- .buildkite/pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 47a7ff84d..f81040479 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -10,10 +10,11 @@ steps: plugins: - JuliaCI/julia#v1: version: "1.10" - persist_depot_dirs: "" + command: "julia --color=yes --project -e 'using Pkg; Pkg.status()'" notify: - github_commit_status: context: "Setup test environment" + - label: ":speedboat: GPU tests" depends_on: "init" From 79fb0422caecf062deba3cf7bd782d4e492827fc Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:54:20 +0100 Subject: [PATCH 15/17] guess we need that plugin too --- .buildkite/pipeline.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index f81040479..7c5f554e7 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -19,6 +19,8 @@ steps: - label: ":speedboat: GPU tests" depends_on: "init" plugins: + - JuliaCI/julia#v1: + version: "1.10" - JuliaCI/julia-test#v1: update_registry: true coverage: false @@ -32,6 +34,8 @@ steps: env: CUDA_VISIBLE_DEVICES: "-1" plugins: + - JuliaCI/julia#v1: + version: "1.10" - JuliaCI/julia-test#v1: update_registry: true coverage: true @@ -45,6 +49,9 @@ steps: env: CUDA_VISIBLE_DEVICES: "-1" JULIA_DEBUG: "Documenter" + plugind: + - JuliaCI/julia#v1: + version: "1.10" command: - "julia --color=yes --project=docs/ -e 'using Pkg; Pkg.Registry.update(); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'" - "julia --color=yes --project=docs/ docs/make.jl" From 61b605a5813cc377690b639acb83fec93162414b Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:54:49 +0100 Subject: [PATCH 16/17] can't type --- .buildkite/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 7c5f554e7..91f95f1f8 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -49,7 +49,7 @@ steps: env: CUDA_VISIBLE_DEVICES: "-1" JULIA_DEBUG: "Documenter" - plugind: + plugins: - JuliaCI/julia#v1: version: "1.10" command: From f95789ad1aed98d278a47f76445ad901ac1a68df Mon Sep 17 00:00:00 2001 From: Jago Strong-Wright Date: Fri, 26 Jul 2024 14:55:56 +0100 Subject: [PATCH 17/17] maybe don't update registries --- .buildkite/pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 91f95f1f8..beb13b2a5 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -22,7 +22,7 @@ steps: - JuliaCI/julia#v1: version: "1.10" - JuliaCI/julia-test#v1: - update_registry: true + update_registry: false coverage: false notify: - github_commit_status: @@ -37,7 +37,7 @@ steps: - JuliaCI/julia#v1: version: "1.10" - JuliaCI/julia-test#v1: - update_registry: true + update_registry: false coverage: true notify: - github_commit_status: