diff options
author | Robb Kidd <rkidd@chef.io> | 2019-10-23 14:27:40 -0400 |
---|---|---|
committer | Bryan McLellan <btm@chef.io> | 2019-10-23 14:27:40 -0400 |
commit | 18fa2a105001a053be46fd3be1b4dd3f7e2a74ce (patch) | |
tree | 79d3c316284b0a860fe87150f7c413ae80b368ca /.expeditor/config.yml | |
parent | 2bdb7223a6d9798773b5b9fee004d7fce7cb2aee (diff) | |
download | chef-18fa2a105001a053be46fd3be1b4dd3f7e2a74ce.tar.gz |
add a new pipeline for verifying hab plans (#9019)
As noted in the pipeline's description, this is intended to be a
temporary pipeline to verify the habitat plans. It will soon perform a
local build, test it, then throw it away. Its steps should eventually
move into the "verify" pipeline (if fast enough) or this pipeline should
be removed in favor of learning about packaging problems after merge.
definition is overridden to get specific about where the steps are
defined.
trigger is overridden so that the usual `verify/` trigger of PRs
opened/updated is turned off. This pipeline will only be triggered by
API call (and so, also through the BuildKite UI once the pipeline
exists).
Signed-off-by: Robb Kidd <robb@thekidds.org>
Diffstat (limited to '.expeditor/config.yml')
-rw-r--r-- | .expeditor/config.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml index ebbc011ba0..46fbd82de3 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -25,6 +25,14 @@ docker_images: pipelines: - verify: public: true + - verify/habitat: + description: > + A temporary pipeline to verify the habitat plans. Performs a local build, + tests it, then throws it away. Its steps should eventually move into the + "verify" pipeline (if fast enough) or this pipeline should be removed in + favor of learning about packaging problems after merge. + definition: .expeditor/verify.habitat.pipeline.yml + trigger: default - habitat/build - habitat/test: definition: .expeditor/habitat-test.pipeline.yml |