diff options
author | Jeremiah Snapp <jeremiah@chef.io> | 2019-10-07 11:16:18 -0400 |
---|---|---|
committer | Jeremiah Snapp <jeremiah@chef.io> | 2019-10-07 11:16:18 -0400 |
commit | 21a2943eff5ba36e0fb6d8af0ac34f74ed5854f6 (patch) | |
tree | 949157cce71dc5759bbd8866c511e2e180a8710d /.expeditor | |
parent | 63a4af262d777a80c24990368312c2f793eae11c (diff) | |
download | chef-21a2943eff5ba36e0fb6d8af0ac34f74ed5854f6.tar.gz |
Create habitat test pipelinesnappj/create-habitat-test-pipeline
Signed-off-by: Jeremiah Snapp <jeremiah@chef.io>
Diffstat (limited to '.expeditor')
-rw-r--r-- | .expeditor/config.yml | 2 | ||||
-rw-r--r-- | .expeditor/habitat-test.pipeline.yml | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml index 203f6cd924..3272e4c7eb 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -26,6 +26,8 @@ pipelines: - verify: public: true - habitat/build + - habitat-test: + definition: .expeditor/habitat-test.pipeline.yml - omnibus/release - omnibus/adhoc: definition: .expeditor/release.omnibus.yml diff --git a/.expeditor/habitat-test.pipeline.yml b/.expeditor/habitat-test.pipeline.yml new file mode 100644 index 0000000000..32e799a6dd --- /dev/null +++ b/.expeditor/habitat-test.pipeline.yml @@ -0,0 +1,21 @@ +--- +steps: + +- label: ":linux: Validate Habitat Builds of Chef Infra" + commands: + - hab pkg install chef/chef-infra-client + expeditor: + executor: + linux: + privileged: true + single-use: true + +- label: ":windows: Validate Habitat Builds of Chef Infra" + commands: + - hab pkg install chef/chef-infra-client + expeditor: + executor: + windows: + os-version: 2016 + privileged: true + single-use: true |