From e6be29734c336741a648968e344a41c654e87de6 Mon Sep 17 00:00:00 2001 From: poornima Date: Mon, 28 Feb 2022 11:32:13 +0530 Subject: Test Ruby 3.0/3.1 Signed-off-by: poornima --- .expeditor/verify.pipeline.yml | 18 +++++++++++++----- .github/CODEOWNERS | 4 ++-- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 3869445..241767b 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -14,7 +14,7 @@ steps: expeditor: executor: docker: - image: ruby:2.4-buster + image: ruby:2.4 - label: run-lint-and-specs-ruby-2.5 command: @@ -22,7 +22,7 @@ steps: expeditor: executor: docker: - image: ruby:2.5-buster + image: ruby:2.5 - label: run-lint-and-specs-ruby-2.6 command: @@ -30,7 +30,7 @@ steps: expeditor: executor: docker: - image: ruby:2.6-buster + image: ruby:2.6 - label: run-lint-and-specs-ruby-2.7 command: @@ -38,7 +38,7 @@ steps: expeditor: executor: docker: - image: ruby:2.7-buster + image: ruby:2.7 - label: run-lint-and-specs-ruby-3.0 command: @@ -46,7 +46,15 @@ steps: expeditor: executor: docker: - image: ruby:3.0-buster + image: ruby:3.0 + +- label: run-lint-and-specs-ruby-3.1 + command: + - .expeditor/run_linux_tests.sh rake + expeditor: + executor: + docker: + image: ruby:3.1 - label: run-specs-windows command: diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 950afb7..25d99ed 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 -- cgit v1.2.1 From 70bf7b9f0916f5d9a86f7e6fe9d7b8dc93b240fa Mon Sep 17 00:00:00 2001 From: poornima Date: Mon, 28 Feb 2022 11:40:55 +0530 Subject: Dropping test for Ruby 2.4 Signed-off-by: poornima --- .expeditor/verify.pipeline.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 241767b..e438ef0 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -8,14 +8,6 @@ expeditor: steps: -- label: run-lint-and-specs-ruby-2.4 - command: - - .expeditor/run_linux_tests.sh rake - expeditor: - executor: - docker: - image: ruby:2.4 - - label: run-lint-and-specs-ruby-2.5 command: - .expeditor/run_linux_tests.sh rake -- cgit v1.2.1 From b34af324589c857e7110da33af63ee42d5724c72 Mon Sep 17 00:00:00 2001 From: poornima Date: Mon, 28 Feb 2022 12:12:17 +0530 Subject: Modify ruby-version in Gemspec Signed-off-by: poornima --- mixlib-log.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixlib-log.gemspec b/mixlib-log.gemspec index 310bc2b..6e45be1 100644 --- a/mixlib-log.gemspec +++ b/mixlib-log.gemspec @@ -11,5 +11,5 @@ Gem::Specification.new do |gem| gem.authors = ["Chef Software, Inc."] gem.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } gem.require_paths = ["lib"] - gem.required_ruby_version = ">= 2.3" + gem.required_ruby_version = ">= 2.5" end -- cgit v1.2.1