summaryrefslogtreecommitdiff
path: root/.expeditor/run_windows_tests.ps1
diff options
context:
space:
mode:
authorjayashri garud <jgarud@msystechnologies.com>2022-04-07 10:42:10 +0530
committerjayashri garud <jgarud@msystechnologies.com>2022-04-07 19:09:13 +0530
commit1ec0308cda4a9d42300bc96ce0e9e4e9eb16d94b (patch)
treea09428db42ee72988f5ccfe6662b2922a6b01ab6 /.expeditor/run_windows_tests.ps1
parent036d501c22dbcd5f0b9c3656cf9a97cdf14cb1da (diff)
downloadmixlib-cli-1ec0308cda4a9d42300bc96ce0e9e4e9eb16d94b.tar.gz
add ruby tests 3.0/3.1
Signed-off-by: jayashri garud <jgarud@msystechnologies.com>
Diffstat (limited to '.expeditor/run_windows_tests.ps1')
-rw-r--r--.expeditor/run_windows_tests.ps117
1 files changed, 17 insertions, 0 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