diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 6a6020a47b3..987e25abfd6 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -4,7 +4,7 @@ steps: - JuliaCI/julia#v1: persist_depot_dirs: packages,artifacts,compiled version: "1.7" - depot_hard_size_limit: "268435456000" # 250GB + artifacts_size_limit: "268435456000" # 250GB - JuliaCI/merge-commit: ~ - staticfloat/forerunner#v1: watch: diff --git a/.buildkite/pipeline.yml.signature b/.buildkite/pipeline.yml.signature index 2bdb0d4c612..4aa05e90c70 100644 Binary files a/.buildkite/pipeline.yml.signature and b/.buildkite/pipeline.yml.signature differ diff --git a/.buildkite/utils.jl b/.buildkite/utils.jl index 26450e5c614..46fc489ddad 100644 --- a/.buildkite/utils.jl +++ b/.buildkite/utils.jl @@ -33,7 +33,7 @@ plugins() = Pair{String, Union{Nothing, Dict}}[ "JuliaCI/julia#v1" => Dict( "persist_depot_dirs" => "packages,artifacts,compiled", "version" => "1.7", - "depot_hard_size_limit" => string(150 << 30), # 150 GiB + "artifacts_size_limit" => string(150 << 30), # 150 GiB ), "JuliaCI/merge-commit" => nothing ]