From 5a88e47b71ed20c4c0f0102f3ed3f8dc3ec4b454 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sat, 22 Jan 2022 14:32:19 +0300 Subject: refactor(ops/pipelines): Split build/post steps into separate chunks This will create `build-chunk-$n.json` files for steps that should run _before_ duck, and `post-chunk-$n.json` files for steps that should run after duck. The post steps are not yet uploaded to Buildkite, but we also don't have any right now. Change-Id: I7e1b59cf55a8bf1d97266f6e988aa496959077bf Reviewed-on: https://cl.tvl.fyi/c/depot/+/5047 Tested-by: BuildkiteCI Reviewed-by: ezemtsov Autosubmit: tazjin --- ops/pipelines/static-pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ops') diff --git a/ops/pipelines/static-pipeline.yaml b/ops/pipelines/static-pipeline.yaml index cf3fc9d4fb..4a844561e6 100644 --- a/ops/pipelines/static-pipeline.yaml +++ b/ops/pipelines/static-pipeline.yaml @@ -54,7 +54,7 @@ steps: # Steps need to be uploaded in reverse order because pipeline # upload prepends instead of appending. - ls pipeline/chunk-*.json | tac | while read chunk; do + ls pipeline/build-chunk-*.json | tac | while read chunk; do buildkite-agent pipeline upload $$chunk done -- cgit 1.4.1