summaryrefslogtreecommitdiff
path: root/.expeditor/verify.pipeline.yml
diff options
context:
space:
mode:
authorJeremiah Snapp <jeremiah.snapp@gmail.com>2022-04-08 10:57:52 -0400
committerGitHub <noreply@github.com>2022-04-08 10:57:52 -0400
commit54714b39a013cf7f784a463a530f50adee6414d4 (patch)
treecb0f5b544e510170ca6f7549eebf76805097f30c /.expeditor/verify.pipeline.yml
parentb766530aeb5a8f7eca4cb43d3c51913f08e743b6 (diff)
parent7c000273259a70fbbbfe534fc9bb1d5c6b122b15 (diff)
downloadwmi-lite-54714b39a013cf7f784a463a530f50adee6414d4.tar.gz
Merge pull request #16 from chef/poorndm/IPACK-117-Test-Ruby-3.1HEADmain
Test Ruby 3.0/3.1
Diffstat (limited to '.expeditor/verify.pipeline.yml')
-rw-r--r--.expeditor/verify.pipeline.yml41
1 files changed, 29 insertions, 12 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 580c5fb..8f95135 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -15,7 +15,7 @@ steps:
expeditor:
executor:
docker:
- image: ruby:2.5-buster
+ image: ruby:2.5
- label: run-specs-ruby-2.6
command:
@@ -23,7 +23,7 @@ steps:
expeditor:
executor:
docker:
- image: ruby:2.6-buster
+ image: ruby:2.6
- label: run-specs-ruby-2.7
command:
@@ -31,25 +31,42 @@ steps:
expeditor:
executor:
docker:
- image: ruby:2.7-buster
+ image: ruby:2.7
-- label: run-specs-windows
+- label: run-specs-ruby-3.0
command:
- - bundle config set --local without docs debug
- - bundle install --jobs=7 --retry=3
- - bundle exec rake spec
+ - .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- host_os: windows
+ image: ruby:3.0
+
+- label: run-specs-ruby-3.1
+ command:
+ - .expeditor/run_linux_tests.sh rake
+ expeditor:
+ executor:
+ docker:
+ image: ruby:3.1
-- label: "Unit and Functional Testing Windows :ruby: 3.0"
+- label: run-specs-ruby-3.0-windows
command:
- - bundle config set --local without docs debug
- - bundle install --jobs=7 --retry=3
- - bundle exec rake spec
+ - .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'