Skip to content

Commit

Permalink
Merge pull request #54 from chef/nikhil/fixed-verify-test-failure
Browse files Browse the repository at this point in the history
CHEF-1919 Fixed the knife-vcenter verify test failure
  • Loading branch information
nikhil2611 authored Apr 21, 2023
2 parents 97cdaa4 + f806cc7 commit 54b89ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
12 changes: 3 additions & 9 deletions .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,13 @@ expeditor:
timeout_in_minutes: 30

steps:
- label: run-lint-and-specs-ruby-2.6
- label: run-lint-and-specs-ruby-3.1
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.6-buster
- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.7-buster
image: ruby:3.1-buster
- label: run-specs-windows
command:
- bundle config set --local without docs debug
Expand All @@ -33,3 +26,4 @@ steps:
executor:
docker:
host_os: windows
image: rubydistros/windows-2019:3.1
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ group :test do
gem "chef-zero", "~> 15"
gem "chef", "~> 15"
end
gem "knife", ">= 18.0"
end

group :debug do
Expand Down
4 changes: 2 additions & 2 deletions knife-vcenter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Gem::Specification.new do |spec|
spec.files = Dir["LICENSE", "lib/**/*"]
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.6"
spec.required_ruby_version = ">= 3.1"

spec.add_dependency "chef", ">= 15.11"
spec.add_dependency "chef", ">= 18.0"
spec.add_dependency "knife-cloud", ">= 4.0"
spec.add_dependency "rb-readline", "~> 0.5"
spec.add_dependency "rbvmomi", ">= 1.11", "< 4.0"
Expand Down

0 comments on commit 54b89ba

Please sign in to comment.