diff options
Diffstat (limited to 'ops/pipelines/static-pipeline.yaml')
-rw-r--r-- | ops/pipelines/static-pipeline.yaml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ops/pipelines/static-pipeline.yaml b/ops/pipelines/static-pipeline.yaml index f366afe24cca..9f9a93c65814 100644 --- a/ops/pipelines/static-pipeline.yaml +++ b/ops/pipelines/static-pipeline.yaml @@ -8,8 +8,13 @@ steps: - label: ":llama:" command: | set -ue - nix-build -A ops.pipelines.depot -o depot.yaml --show-trace && \ - buildkite-agent pipeline upload depot.yaml + nix-build -A ops.pipelines.depot -o pipeline --show-trace + + # Steps need to be uploaded in reverse order because pipeline + # upload prepends instead of appending. + ls pipeline/chunk-*.json | tac | while read chunk; do + buildkite-agent pipeline upload $$chunk + done # Wait for all previous steps to complete. - wait: null |