summaryrefslogtreecommitdiff
path: root/.expeditor/run_windows_tests.ps1
diff options
context:
space:
mode:
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..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