Skip to content

Commit

Permalink
Merge pull request #64 from chef/poorndm/IPACK-99-ADD-ruby-3.1-tests-…
Browse files Browse the repository at this point in the history
…on-windows

Add ruby-3.0/3.1 tests on windows
  • Loading branch information
jeremiahsnapp committed Apr 7, 2022
2 parents 3884c29 + 5b13991 commit 597dc7c
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .expeditor/run_windows_tests.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# 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 }
20 changes: 16 additions & 4 deletions .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,24 @@ steps:
docker:
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'

0 comments on commit 597dc7c

Please sign in to comment.