diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-01-15 08:51:38 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-01-15 08:51:38 -0800 |
commit | 3f3cc034299a96c94cee5ad1fc778ed2b51d2897 (patch) | |
tree | ea0653cd839653d7689456c9071ab6935112c878 /.expeditor/verify.pipeline.yml | |
parent | 856ad9d83c8e9fefa08c37bedb8d00816954edb5 (diff) | |
download | chef-3f3cc034299a96c94cee5ad1fc778ed2b51d2897.tar.gz |
Remove Ruby 2.6 tests
Ohai requires Ruby 2.7+ now
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/verify.pipeline.yml')
-rw-r--r-- | .expeditor/verify.pipeline.yml | 63 |
1 files changed, 10 insertions, 53 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 2b28f3c132..1121e04dd3 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -15,6 +15,16 @@ steps: # Tests Ruby 2.7 ######################################################################### +- label: "Chefstyle :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: "Integration Ubuntu 18.04 :ruby: 2.7" commands: - /workdir/.expeditor/scripts/bk_container_prep.sh @@ -239,59 +249,6 @@ steps: shell: ["powershell", "-Command"] ######################################################################### -# Tests Ruby 2.6 -######################################################################### - -- label: "Chefstyle :ruby: 2.6" - commands: - - gem install bundler -v 2.1.4 # match Ruby 2.7 bundler - - /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.6 - -- label: "Integration :ruby: 2.6" - commands: - - gem install bundler -v 2.1.4 # match Ruby 2.7 bundler - - /workdir/.expeditor/scripts/bk_container_prep.sh - - bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package - - bundle exec rake spec:integration - expeditor: - executor: - docker: - image: rubydistros/ubuntu-18.04:2.6 - privileged: true - -- label: "Functional :ruby: 2.6" - commands: - - gem install bundler -v 2.1.4 # match Ruby 2.7 bundler - - /workdir/.expeditor/scripts/bk_container_prep.sh - - apt-get update -y - - apt-get install -y cron locales net-tools # needed for functional tests to pass - - bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package - - bundle exec rake spec:functional - expeditor: - executor: - docker: - image: rubydistros/ubuntu-18.04:2.6 - privileged: true - -- label: "Unit :ruby: 2.6" - commands: - - gem install bundler -v 2.1.4 # match Ruby 2.7 bundler - - /workdir/.expeditor/scripts/bk_container_prep.sh - - bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package - - bundle exec rake spec:unit - - bundle exec rake component_specs - expeditor: - executor: - docker: - image: rubydistros/ubuntu-18.04:2.6 - -######################################################################### # EXTERNAL GEM TESTING ######################################################################### |