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.ps120
1 files changed, 10 insertions, 10 deletions
diff --git a/.expeditor/buildkite/verify.ps1 b/.expeditor/buildkite/verify.ps1
index 106e1bf..c72188b 100644
--- a/.expeditor/buildkite/verify.ps1
+++ b/.expeditor/buildkite/verify.ps1
@@ -2,37 +2,37 @@ echo "--- system details"
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
-echo "--- Install make and ruby2.devkit"
-choco install make ruby ruby2.devkit -y
+echo "--- Install make"
+choco install make -y
refreshenv
-
-echo - c:\tools\ruby26 > c:\tools\Devkit2\config.yml
-ruby c:\tools\Devkit2\dk.rb install
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
choco install msys2 -y
refreshenv
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
Write-Output 'Updating PATH'
$env:PATH = "C:\tools\ruby26\bin;C:\tools\DevKit2\mingw\bin;C:\tools\DevKit2\bin;" + $env:PATH
[Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine)
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
ruby -v
bundle --version
gem -v
-
-C:\tools\ruby26\ridk_use\ridk.cmd install 3
-C:\tools\ruby26\ridk_use\ridk.cmd enable
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
echo "--- gem install bundler"
gem install bundler
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
echo "--- bundle install"
bundle install --without development_extras --jobs 3 --retry 3 --path vendor/bundle
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
echo "+++ bundle exec rake compile"
bundle exec rake compile
+If ($lastexitcode -ne 0) { Exit $lastexitcode }
echo "+++ bundle exec rake spec"
bundle exec rake spec
-
-exit $LASTEXITCODE \ No newline at end of file
+If ($lastexitcode -ne 0) { Exit $lastexitcode } \ No newline at end of file