summaryrefslogtreecommitdiff
path: root/.expeditor
diff options
context:
space:
mode:
authorPrajaktaPurohit <PrajaktaPurohit@users.noreply.github.com>2022-04-07 06:43:38 -0700
committerGitHub <noreply@github.com>2022-04-07 06:43:38 -0700
commite5a01d7ca8695bf9a13b48dc27011f66be75c9aa (patch)
tree47adc7f003846dda1042a78eae201cd116674fae /.expeditor
parent2f7712deb8f1889d19e8ba86a2ce2ebd83cb24ca (diff)
parent1ec0308cda4a9d42300bc96ce0e9e4e9eb16d94b (diff)
downloadmixlib-cli-main.tar.gz
Merge pull request #84 from chef/IPACK-101-chef-mixlib-cli-operationalize-ruby-3-0-3-1-in-verify-pipelineHEADmain
add ruby tests 3.0 and 3.1 in verify pipeline
Diffstat (limited to '.expeditor')
-rw-r--r--.expeditor/run_windows_tests.ps117
-rw-r--r--.expeditor/verify.pipeline.yml40
2 files changed, 43 insertions, 14 deletions
diff --git a/.expeditor/run_windows_tests.ps1 b/.expeditor/run_windows_tests.ps1
new file mode 100644
index 0000000..f048b32
--- /dev/null
+++ b/.expeditor/run_windows_tests.ps1
@@ -0,0 +1,17 @@
+# Stop script execution when a non-terminating error occurs
+$ErrorActionPreference = "Stop"
+
+# This will run ruby test on windows platform
+
+Write-Output "--- Bundle install"
+
+bundle config --local path vendor/bundle
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
+
+bundle install --jobs=7 --retry=3
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
+
+Write-Output "--- Bundle Execute"
+
+bundle exec rake
+If ($lastexitcode -ne 0) { Exit $lastexitcode } \ No newline at end of file
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index d103ee1..0724ea3 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -6,43 +6,55 @@ expeditor:
steps:
-- label: run-lint-and-specs-ruby-2.4
+- label: run-lint-and-specs-ruby-2.6
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.4-buster
-
-- label: run-lint-and-specs-ruby-2.5
+ image: ruby:2.6
+- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.5-buster
+ image: ruby:2.7
-- label: run-lint-and-specs-ruby-2.6
+- label: run-lint-and-specs-ruby-3.0
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
- image: ruby:2.6-buster
-- label: run-lint-and-specs-ruby-2.7
+ 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-ruby-3.0-windows
+ commands:
+ - .expeditor/run_windows_tests.ps1
+
+ expeditor:
+ executor:
+ docker:
+ host_os: windows
+ shell: ["powershell"]
+ image: rubydistros/windows-2019:3.0
+
+- label: run-specs-ruby-3.1-windows
+ commands:
+ - .expeditor/run_windows_tests.ps1
-- label: run-specs-windows
- command:
- - bundle config set --local without docs debug
- - bundle install --jobs=7 --retry=3
- - bundle exec rake
expeditor:
executor:
docker:
host_os: windows
+ shell: ["powershell"]
+ image: rubydistros/windows-2019:3.1 \ No newline at end of file