summaryrefslogtreecommitdiff
path: root/.expeditor/buildkite/run_windows_tests.ps1
blob: ed5c28abb284f93b55c056ca1f28bdd0fbaa426d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
param([String]$version)
# This script will run ruby test on windows platform. It requires a version
# "3.0" or "3.1" as an argument.

# Stop script execution when a non-terminating error occurs. Note that this makes it
# unneccesary to check the exit code of each program being run - non-zero exit will force it to fail and terminate.
$ErrorActionPreference = "Stop"

# The specific paths of tools within the ruby30/31 devkit vary a bit across 3.0 and 3.1
if ($version -eq "3.0")
{
    $base_dir = "C:\ruby30\"
    $Env:PATH += ";" + $base_dir + "ruby\bin;" + $base_dir + "msys64\usr\bin;" + $base_dir + "msys64\mingw64\bin"
}
elseif($version -eq "3.1")
{
    $base_dir = "C:\ruby31\"
    # Note path change - gcc is living in ucrt64\bin here, and mingw64 in earlier versions.
    $Env:PATH += ";" + $base_dir + "ruby\bin;" + $base_dir + "msys64\usr\bin;" + $base_dir + "msys64\ucrt64\bin"
}

Write-Output "--- Ensuring required bins are in path"
Write-Output  "PATH: " + $Env:PATH
make --version
gcc --version
ruby --version
bundler --version

Write-Output "--- Updating system gems"
gem update --system

Write-Output "--- Bundle install"
bundle install --without development_extras --jobs 3 --retry 3 --path vendor/bundle

Write-Output "--- Gem install"
gem install yajl-ruby json psych

Write-Output "--- Bundle Execute: rake compile"
bundle exec rake compile

Write-Output "--- Bundle Execute: rake spec"
bundle exec rake spec