summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <454857+lamont-granquist@users.noreply.github.com>2022-03-28 10:51:48 -0700
committerGitHub <noreply@github.com>2022-03-28 10:51:48 -0700
commitfe0c7260492671b3cfa3a3b2612c545e7d9ca5e0 (patch)
tree6732434d041503daf13b6062272018163b62da7f
parent0278ad2bdadc5c559e0fb9a6ff6da9cd8ffaa617 (diff)
parent079a86de97700d60ad3548060c18a713cee38948 (diff)
downloadmixlib-config-fe0c7260492671b3cfa3a3b2612c545e7d9ca5e0.tar.gz
Merge pull request #109 from chef/IPACK-102-chef-mixlib-config-operationalize-ruby-3-0-3-1-in-verify-pipeline
-rw-r--r--.expeditor/verify.pipeline.yml24
-rw-r--r--.github/CODEOWNERS4
-rw-r--r--mixlib-config.gemspec2
3 files changed, 19 insertions, 11 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index ba3874e..68fb93d 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -11,37 +11,45 @@ expeditor:
steps:
-- label: run-lint-and-specs-ruby-2.4
+- label: run-lint-and-specs-ruby-2.5
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.4-buster
+ image: ruby:2.5
-- label: run-lint-and-specs-ruby-2.5
+- label: run-lint-and-specs-ruby-2.6
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.5-buster
+ image: ruby:2.6
-- label: run-lint-and-specs-ruby-2.6
+- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.6-buster
+ image: ruby:2.7
-- label: run-lint-and-specs-ruby-2.7
+- label: run-lint-and-specs-ruby-3.0
+ command:
+ - .expeditor/run_linux_tests.sh rake
+ expeditor:
+ executor:
+ docker:
+ image: ruby:3.0
+
+- label: run-lint-and-specs-ruby-3.1
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.7-buster
+ image: ruby:3.1
- label: run-specs-windows
command:
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 950afb7..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-foundation-owners @chef/chef-foundation-approvers @chef/chef-foundation-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/mixlib-config.gemspec b/mixlib-config.gemspec
index 1fd5f2b..0e4be06 100644
--- a/mixlib-config.gemspec
+++ b/mixlib-config.gemspec
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.files = %w{LICENSE NOTICE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
s.homepage = "https://github.com/chef/mixlib-config"
s.require_paths = ["lib"]
- s.required_ruby_version = ">= 2.4"
+ s.required_ruby_version = ">= 2.5"
s.summary = "A class based configuration library"
s.description = s.summary
s.license = "Apache-2.0"