diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-05-13 12:05:49 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-13 12:05:49 -0700 |
commit | 40fa6d393f2a59a71718a67af263d7d19105c082 (patch) | |
tree | 384eb3cf94a40726ec774acfe4b72cb63b7dd167 /.expeditor/verify.pipeline.yml | |
parent | a4a2f6983d534cd65dd971849fd8b2b0bff316a4 (diff) | |
download | chef-40fa6d393f2a59a71718a67af263d7d19105c082.tar.gz |
Add Ubuntu 20.04 testing to our pipeline
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/verify.pipeline.yml')
-rw-r--r-- | .expeditor/verify.pipeline.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index f50f79a807..1791e3228c 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -50,6 +50,41 @@ steps: docker: image: rubydistros/ubuntu-18.04:2.7 +- label: ":rspec: Integration :ubuntu: 20.04 :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/ubuntu-20.04:2.7 + privileged: true + +- label: ":rspec: Functional :ubuntu: 20.04 :ruby: 2.7" + commands: + - /workdir/scripts/bk_tests/bk_container_prep.sh + - apt-get update -y + - apt-get install -y cron locales # needed for functional tests to pass + - 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/ubuntu-20.04:2.7 + privileged: true + +- label: ":rspec: Unit :ubuntu: 20.04 :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/ubuntu-20.04:2.7 + - label: ":rspec: Integration :centos: 7 :ruby: 2.7" commands: - /workdir/scripts/bk_tests/bk_container_prep.sh |