diff options
author | Marc A. Paradise <marc.paradise@gmail.com> | 2021-03-09 15:57:45 -0500 |
---|---|---|
committer | Marc A. Paradise <marc.paradise@gmail.com> | 2021-03-10 12:57:09 -0500 |
commit | 14e4e2ffded34f8654f78bdcd45f0c196759f108 (patch) | |
tree | e15dc96257fca17eeb15ab9406d329a993bcf64a /.expeditor | |
parent | ed994771387cfcfa9e87ee55ef1b0310f7ad7af5 (diff) | |
download | chef-14e4e2ffded34f8654f78bdcd45f0c196759f108.tar.gz |
More verif pipeline fixers
Signed-off-by: Marc A. Paradise <marc.paradise@gmail.com>
Diffstat (limited to '.expeditor')
-rw-r--r-- | .expeditor/verify.pipeline.yml | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 05d98e2eb1..d940e1e4b1 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -41,15 +41,22 @@ steps: # Tests Ruby 2.7 ######################################################################### -- label: "Chefstyle :ruby: 2.7" +- label: "Chefstyle [chef] :ruby: 2.7" commands: - /workdir/.expeditor/scripts/bk_container_prep.sh - bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package ruby_prof - bundle exec rake style + expeditor: + executor: + docker: + image: rubydistros/ubuntu-18.04:2.7 + +- label: "Chefstyle [knife] :ruby: 2.7" + commands: + - /workdir/.expeditor/scripts/bk_container_prep.sh - cd /workdir/knife - bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package ruby_prof - bundle exec rake style - expeditor: executor: docker: @@ -389,6 +396,17 @@ steps: - FORCE_FFI_YAJL=ext - CHEF_LICENSE=accept-no-persist +- label: "Unit Fedora [chef] :ruby: 2.7" + commands: + - /workdir/.expeditor/scripts/bk_container_prep.sh + - cd /workdir/knife; bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package ruby_prof + - bundle exec rake component_specs + - bundle exec rake spec:unit + expeditor: + executor: + docker: + image: rubydistros/fedora-latest:2.7 + - label: "Unit Fedora [knife] :ruby: 2.7" commands: - /workdir/.expeditor/scripts/bk_container_prep.sh |