summaryrefslogtreecommitdiff
path: root/.expeditor/verify.pipeline.yml
diff options
context:
space:
mode:
authorJeremiah Snapp <jeremiah.snapp@gmail.com>2022-04-07 12:21:47 -0400
committerGitHub <noreply@github.com>2022-04-07 12:21:47 -0400
commitcd14b7d85b87e68aaae03a763bed514730977a46 (patch)
tree7555b86b0bd484af026034eba2b44d3d3688654d /.expeditor/verify.pipeline.yml
parentee14aa7be4196f837954dbebc461e373249ffbb5 (diff)
parent0650db3ee1d33df1c8cf80bf93a30cd623fb6800 (diff)
downloadmixlib-authentication-cd14b7d85b87e68aaae03a763bed514730977a46.tar.gz
Merge pull request #59 from chef/poorndm/IPACK-100-Test-Ruby-3.1
Remove Ruby 2.4 support & Test Ruby 3.1
Diffstat (limited to '.expeditor/verify.pipeline.yml')
-rw-r--r--.expeditor/verify.pipeline.yml50
1 files changed, 31 insertions, 19 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 165dccc..416b41b 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -8,52 +8,64 @@ expeditor:
steps:
-- label: run-lint-and-specs-:ruby:-2.4
+- label: run-specs-:ruby:-2.5
command:
- - .expeditor/run_linux_tests.sh rake
+ - .expeditor/run_linux_tests.sh rake spec
expeditor:
executor:
docker:
- image: ruby:2.4-buster
+ image: ruby:2.5
-- label: run-lint-and-specs-:ruby:-2.5
+- label: run-specs-:ruby:-2.6
command:
- - .expeditor/run_linux_tests.sh rake
+ - .expeditor/run_linux_tests.sh rake spec
expeditor:
executor:
docker:
- image: ruby:2.5-buster
+ image: ruby:2.6
-- label: run-lint-and-specs-:ruby:-2.6
+- label: run-specs-:ruby:-2.7
command:
- - .expeditor/run_linux_tests.sh rake
+ - .expeditor/run_linux_tests.sh rake spec
expeditor:
executor:
docker:
- image: ruby:2.6-buster
+ image: ruby:2.7
-- label: run-lint-and-specs-:ruby:-2.7
+- label: run-specs-:ruby:-3.0
command:
- - .expeditor/run_linux_tests.sh rake
+ - .expeditor/run_linux_tests.sh rake spec
expeditor:
executor:
docker:
- image: ruby:2.7-buster
+ image: ruby:3.0
-- label: run-lint-and-specs-:ruby:-3.0
+- label: run-specs-:ruby:-3.1
command:
- - .expeditor/run_linux_tests.sh rake
+ - .expeditor/run_linux_tests.sh rake spec
expeditor:
executor:
docker:
- image: ruby:3.0-buster
+ image: ruby:3.1
-- label: run-specs-windows
+- label: run-specs-ruby-3.0-windows
command:
- - bundle config --local path vendor/bundle
- - bundle install --jobs=7 --retry=3
- - bundle exec rake
+ - .expeditor/run_windows_tests.ps1
expeditor:
executor:
docker:
host_os: windows
+ shell: ["powershell", "-Command"]
+ image: rubydistros/windows-2019:3.0
+ user: 'NT AUTHORITY\SYSTEM'
+
+- label: run-specs-ruby-3.1-windows
+ command:
+ - .expeditor/run_windows_tests.ps1
+ expeditor:
+ executor:
+ docker:
+ host_os: windows
+ shell: ["powershell", "-Command"]
+ image: rubydistros/windows-2019:3.1
+ user: 'NT AUTHORITY\SYSTEM'