I was inspired by this BuildKite pipeline sample given by the support team:
YAML
x
12
12
1
# .buildkite/pipeline.yml
2
steps
3
command echo building a thing
4
block Test the thing?
5
command echo testing a thing
6
wait
7
command buildkite-agent pipeline upload .buildkite/pipeline.deploy.yml
8
9
# .buildkite/pipeline.deploy.yml
10
steps
11
block Deploy the thing?
12
command echo deploy the thing
So in the above case, if the first 2 commands succeed, pipeline.deploy.yml will be loaded into the main CI pipeline. This implementation is just brilliant. I’m not sure if jenkinsfile can do dynamic pipeline like this, but at least jenkinsfile won’t look as elegant as yaml.
Since buildkite-agent pipeline upload .buildkite/pipeline.deploy.yml
is just another bash command, I can even use it in a script to put more logic in it, such as git flow implementation like:
YAML
xxxxxxxxxx
1
30
30
1
#!/bin/bash
2
export CHOICE=$(buildkite-agent meta-data get "next-section")
3
4
case $CHOICE in
5
deploy)
6
buildkite-agent pipeline upload .buildkite/pipeline.qa.yml
7
;;
8
signoff)
9
# feature finish
10
if $BUILDKITE_BRANCH == feature* ; then
11
python .buildkite/scripts/github_ci.py \
12
--action pr \
13
--repo flow-work \
14
--head $BUILDKITE_BRANCH \
15
--base develop
16
17
# release start
18
elif $BUILDKITE_BRANCH == develop ; then
19
git checkout -b release/$FULL_VERSION
20
git push --set-upstream origin release/$BUILDKITE_BUILD_NUMBER
21
22
# release finish
23
elif $BUILDKITE_BRANCH == release* ; then
24
buildkite-agent pipeline upload .buildkite/pipeline.pass.yml
25
fi
26
;;
27
reject)
28
#mark build as failure
29
exit -1
30
;;
FYI. example tested with BuildKite agent version 3.2.0.