about summary refs log tree commit diff
path: root/ops/pipelines
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-01-22T11·32+0300
committerclbot <clbot@tvl.fyi>2022-01-22T11·59+0000
commit5a88e47b71ed20c4c0f0102f3ed3f8dc3ec4b454 (patch)
tree912f80d0fea103e74f5f881a4e11d44ffc48aafb /ops/pipelines
parentf12ceaa6228f55f7b5a83062b147df694e72f841 (diff)
refactor(ops/pipelines): Split build/post steps into separate chunks r/3657
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 <eugene.zemtsov@gmail.com>
Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'ops/pipelines')
-rw-r--r--ops/pipelines/static-pipeline.yaml2
1 files changed, 1 insertions, 1 deletions
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