summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrajaktaPurohit <PrajaktaPurohit@users.noreply.github.com>2022-03-18 11:38:01 -0700
committerGitHub <noreply@github.com>2022-03-18 11:38:01 -0700
commit959c6248a727eaf220772f7d7b597647ce7c8b43 (patch)
treef8737ef36010ea91789e7cb527ff1f7792d1395d
parent8f89784d155a2f9676b349afe8bafe12e0480165 (diff)
parentbd5c0da74ca9c90a8fda33af83a1369505e7f998 (diff)
downloadchef-zero-959c6248a727eaf220772f7d7b597647ce7c8b43.tar.gz
Merge pull request #322 from chef/IPACK-92-chef-chef-zero-operationalize-ruby-3-0-3-1-verify-pipeline
add ruby 3.0 and 3.1 tests in verify pipeline
-rw-r--r--.expeditor/verify.pipeline.yml22
-rw-r--r--.github/CODEOWNERS4
-rw-r--r--chef-zero.gemspec1
3 files changed, 16 insertions, 11 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 4948358..36b10a9 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -8,28 +8,32 @@ steps:
- label: run-lint-and-specs-ruby-2.6
command:
- - apt-get update
- .expeditor/run_linux_tests.sh rake spec pedant style
expeditor:
executor:
docker:
- image: ruby:2.6-buster
+ image: ruby:2.6
- label: run-lint-and-specs-ruby-2.7
command:
- - apt-get update
- .expeditor/run_linux_tests.sh rake spec pedant style
expeditor:
executor:
docker:
- image: ruby:2.7-buster
+ image: ruby:2.7
-- label: run-specs-windows
+- label: run-lint-and-specs-ruby-3.0
command:
- - bundle config set --local without docs debug
- - bundle install --jobs=7 --retry=3
- - bundle exec rake pedant style
+ - .expeditor/run_linux_tests.sh rake spec pedant style
+ expeditor:
+ executor:
+ docker:
+ image: ruby:3.0
+
+- label: run-lint-and-specs-ruby-3.1
+ command:
+ - .expeditor/run_linux_tests.sh rake spec pedant style
expeditor:
executor:
docker:
- host_os: windows
+ image: ruby:3.1
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index b1e1b13..36212ce 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,5 +1,5 @@
# Order is important. The last matching pattern has the most precedence.
-* @chef/chef-server-owners @chef/chef-server-approvers @chef/chef-server-reviewers
-.expeditor/ @chef/jex-team
+* @chef/chef-infra-reviewers @chef/chef-infra-approvers @chef/chef-infra-owners
+.expeditor/ @chef/infra-packages
*.md @chef/docs-team
diff --git a/chef-zero.gemspec b/chef-zero.gemspec
index 8ba6141..306f580 100644
--- a/chef-zero.gemspec
+++ b/chef-zero.gemspec
@@ -13,6 +13,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = ">= 2.6"
+ s.add_dependency "activesupport","~> 6.1" #pin until we support ruby 2.6
s.add_dependency "mixlib-log", ">= 2.0", "< 4.0"
s.add_dependency "hashie", ">= 2.0", "< 5.0"
s.add_dependency "uuidtools", "~> 2.1"