diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-05-12 23:15:31 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-12 23:15:31 -0700 |
commit | 8b026d0d2a07b54fef4fb737e4dca6d4d2e705bf (patch) | |
tree | bd0917e4b3780c89dd33adb796dfec9b0a900289 | |
parent | 3ec0f47e13862b62470fada2a440b2450dc93874 (diff) | |
download | chef-expand_pr_testing.tar.gz |
Add rspec testing on CentOS 8expand_pr_testing
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | .expeditor/verify.pipeline.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index f50f79a807..554a188700 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -84,6 +84,40 @@ steps: docker: image: rubydistros/centos-7:2.7 +- label: ":rspec: Integration :centos: 8 :ruby: 2.7" + commands: + - /workdir/scripts/bk_tests/bk_container_prep.sh + - cd /workdir; bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package docgen + - bundle exec rake spec:integration + expeditor: + executor: + docker: + image: rubydistros/centos-8:2.7 + privileged: true + +- label: ":rspec: Functional :centos: 8 :ruby: 2.7" + commands: + - /workdir/scripts/bk_tests/bk_container_prep.sh + - yum install -y crontabs e2fsprogs util-linux + - cd /workdir; bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package docgen ruby_prof + - bundle exec rake spec:functional + expeditor: + executor: + docker: + image: rubydistros/centos-8:2.7 + privileged: true + +- label: ":rspec: Unit :centos: 8 :ruby: 2.7" + commands: + - /workdir/scripts/bk_tests/bk_container_prep.sh + - bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package docgen ruby_prof + - bundle exec rake spec:unit + - bundle exec rake component_specs + expeditor: + executor: + docker: + image: rubydistros/centos-8:2.7 + - label: ":rspec: Integration :lizard: openSUSE 15 :ruby: 2.7" commands: - /workdir/scripts/bk_tests/bk_container_prep.sh |