summaryrefslogtreecommitdiff
path: root/.expeditor/buildkite/verify.ps1
diff options
context:
space:
mode:
Diffstat (limited to '.expeditor/buildkite/verify.ps1')
-rw-r--r--.expeditor/buildkite/verify.ps123
1 files changed, 23 insertions, 0 deletions
diff --git a/.expeditor/buildkite/verify.ps1 b/.expeditor/buildkite/verify.ps1
new file mode 100644
index 0000000..cb4e5c8
--- /dev/null
+++ b/.expeditor/buildkite/verify.ps1
@@ -0,0 +1,23 @@
+echo "--- system details"
+$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
+Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
+
+# Set-Item -Path Env:Path -Value ($Env:Path + ";C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin")
+$Env:Path="C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\ruby26\bin;C:\ci-studio-common\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Users\ContainerAdministrator\AppData\Local\Microsoft\WindowsApps;C:\Go\bin;C:\Users\ContainerAdministrator\go\bin"
+
+
+ruby -v
+bundle --version
+gem -v
+
+echo "--- bundle install"
+bundle install --jobs=7 --retry=3 --without docs debug
+
+echo "--- bundle env"
+bundle env
+
+echo "+++ bundle exec rake"
+bundle exec rake compile
+bundle exec rake spec
+
+exit $LASTEXITCODE \ No newline at end of file