summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-05-22 08:57:27 -0700
committerGitHub <noreply@github.com>2020-05-22 08:57:27 -0700
commitdc3d376fd226208899d11c995651f7af5f4c6f42 (patch)
treef321e42d329ad0871fc855de4bce53eadb1f33d6
parentc03fff9de463c23d5b4374c627c942090e44c1fe (diff)
parentbc683b53cef6d87cea7abbdb4102d15edd246e1c (diff)
downloadchef-dc3d376fd226208899d11c995651f7af5f4c6f42.tar.gz
Merge pull request #9881 from chef/csnapp/use_win_from_rubydistros
Modify verify pipeline to use rubydistros windows-2019 docker image
-rw-r--r--.expeditor/verify.pipeline.yml3
-rw-r--r--scripts/bk_tests/bk_win_functional.ps195
2 files changed, 16 insertions, 82 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 14a3d7196d..21d08848ae 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -163,6 +163,7 @@ steps:
executor:
docker:
host_os: windows
+ image: rubydistros/windows-2019:2.6
environment:
- FORCE_FFI_YAJL=ext
- CHEF_LICENSE=accept-no-persist
@@ -184,6 +185,7 @@ steps:
executor:
docker:
host_os: windows
+ image: rubydistros/windows-2019:2.6
shell: ["powershell", "-Command"]
- label: "Unit Specs Windows :ruby: 2.6"
@@ -193,6 +195,7 @@ steps:
executor:
docker:
host_os: windows
+ image: rubydistros/windows-2019:2.6
environment:
- FORCE_FFI_YAJL=ext
- CHEF_LICENSE=accept-no-persist
diff --git a/scripts/bk_tests/bk_win_functional.ps1 b/scripts/bk_tests/bk_win_functional.ps1
index 9a9d50a63b..1df1871221 100644
--- a/scripts/bk_tests/bk_win_functional.ps1
+++ b/scripts/bk_tests/bk_win_functional.ps1
@@ -1,101 +1,32 @@
-# The filename of the Ruby installer
-$RubyFilename = "rubyinstaller-devkit-2.6.5-1-x64.exe"
-
-# The sha256 of the Ruby installer (capitalized?)
-$RubySHA256 = "BD2050496A149C7258ED4E2E44103756CA3A05C7328A939F0FDC97AE9616A96D"
-
-# Where on disk to download Ruby to
-$RubyPath = "$env:temp\$RubyFilename"
-
-# Where to download Ruby from:
-$RubyS3Path = "s3://public-cd-buildkite-cache/$RubyFilename"
-
-Function DownloadRuby
-{
- $RandDigits = Get-Random
- echo "Downloading Ruby + DevKit"
-
- aws s3 cp "$RubyS3Path" "$RubyPath.$RandDigits" | Out-Null # Out-Null is a hack to wait for the process to complete
-
- if ($LASTEXITCODE -ne 0) {
- echo "aws s3 download failed: $LASTEXITCODE"
- exit $LASTEXITCODE
- }
-
- $FileHash = (Get-FileHash "$RubyPath.$RandDigits" -Algorithm SHA256).Hash
- If ($FileHash -eq $RubySHA256) {
- echo "Downloaded SHA256 matches: $FileHash"
- } Else {
- echo "Downloaded file hash $FileHash does not match desired $RubySHA256"
- exit 1
- }
-
- # On a shared filesystem, sometimes a good file appears while we are downloading
- If (Test-Path $RubyPath) {
- $FileHash = (Get-FileHash "$RubyPath" -Algorithm SHA256).Hash
- If ($FileHash -eq $RubySHA256) {
- echo "A matching file appeared while downloading, using it."
- Remove-Item "$RubyPath.$RandDigits" -Force
- Return
- } Else {
- echo "Existing file does not match, bad hash: $FileHash"
- Remove-Item $RubyPath -Force
- }
- }
-
- echo "Moving file installer into place"
- Rename-Item -Path "$RubyPath.$RandDigits" -NewName $RubyFilename
-}
-
-Function InstallRuby
-{
- If (Test-Path $RubyPath) {
- echo "$RubyPath already exists"
-
- $FileHash = (Get-FileHash "$RubyPath" -Algorithm SHA256).Hash
- If ($FileHash -eq $RubySHA256) {
- echo "Found matching Ruby + DevKit on disk"
- } Else {
- echo "SHA256 hash mismatch, re-downloading"
- DownloadRuby
- }
- } Else {
- echo "No Ruby found at $RubyPath, downloading"
- DownloadRuby
- }
-
- echo "Installing Ruby + DevKit"
- Start-Process $RubyPath -ArgumentList '/verysilent /dir=C:\\ruby26' -Wait
-
- echo "Cleaning up installation"
- Remove-Item $RubyPath -Force -ErrorAction SilentlyContinue
-}
-
-echo "--- system details"
+Write-Output "--- system details"
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
# chocolatey functional tests fail so delete the chocolatey binary to avoid triggering them
Remove-Item -Path C:\ProgramData\chocolatey\bin\choco.exe -ErrorAction SilentlyContinue
-echo "--- install ruby + devkit"
$ErrorActionPreference = 'Stop'
-InstallRuby
+Write-Output "--- Enable Ruby 2.6"
+Write-Output "Add Uru to Environment PATH"
+$env:PATH = "C:\Program Files (x86)\Uru;" + $env:PATH
+[Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine)
-# Set-Item -Path Env:Path -Value to include ruby26
-$Env:Path+=";C:\ruby26\bin"
+Write-Output "Register Installed Ruby Version 2.6 With Uru"
+Start-Process "C:\Program Files (x86)\Uru\uru_rt.exe" -ArgumentList 'admin add C:\ruby26\bin' -Wait
+uru 266
+if (-not $?) { throw "Can't Activate Ruby. Did Uru Registration Succeed?" }
-echo "--- configure winrm"
+Write-Output "--- configure winrm"
winrm quickconfig -q
ruby -v
bundle --version
-echo "--- bundle install"
-bundle install --jobs=3 --retry=3 --without omnibus_package docgen chefstyle
+Write-Output "--- bundle install"
+bundle install --jobs=3 --retry=3 --without omnibus_package
-echo "+++ bundle exec rake spec:functional"
+Write-Output "+++ bundle exec rake spec:functional"
bundle exec rake spec:functional
exit $LASTEXITCODE