From 570e9782ecfed870e0e72c75f84fedc49de0e175 Mon Sep 17 00:00:00 2001 From: skeshari12 Date: Mon, 11 Apr 2022 16:53:15 +0530 Subject: Add ruby 3.0/3.1 windows tests Signed-off-by: skeshari12 --- .expeditor/run_windows_tests.ps1 | 17 +++++++++++++++++ .expeditor/verify.pipeline.yml | 28 ++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .expeditor/run_windows_tests.ps1 diff --git a/.expeditor/run_windows_tests.ps1 b/.expeditor/run_windows_tests.ps1 new file mode 100644 index 0000000..1432c2c --- /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" +ruby --version +bundler --version +gem update --system +If ($lastexitcode -ne 0) { Exit $lastexitcode } +bundle config set --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 36b10a9..645ca0a 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -37,3 +37,31 @@ steps: executor: docker: image: ruby:3.1 + +- label: run-specs-windows-ruby-3.0 + command: + - .expeditor/run_windows_tests.ps1 + expeditor: + executor: + docker: + host_os: windows + shell: ["powershell", "-Command"] + image: rubydistros/windows-2019:3.0 + environment: + - FORCE_FFI_YAJL=ext + - EXPIRE_CACHE=true + - CHEF_LICENSE=accept-no-persist + +- label: run-specs-windows-ruby-3.1 + command: + - .expeditor/run_windows_tests.ps1 + expeditor: + executor: + docker: + host_os: windows + shell: ["powershell", "-Command"] + image: rubydistros/windows-2019:3.1 + environment: + - FORCE_FFI_YAJL=ext + - EXPIRE_CACHE=true + - CHEF_LICENSE=accept-no-persist \ No newline at end of file -- cgit v1.2.1