mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
62547195be
Signed-off-by: Christopher A. Snapp <csnapp@chef.io>
29 lines
1.2 KiB
PowerShell
29 lines
1.2 KiB
PowerShell
# Stop script execution when a non-terminating error occurs
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$channel = "$Env:CHANNEL"
|
|
If ([string]::IsNullOrEmpty($channel)) { $channel = "unstable" }
|
|
|
|
$product = "$Env:PRODUCT"
|
|
If ([string]::IsNullOrEmpty($product)) { $product = "inspec" }
|
|
|
|
$version = "$Env:VERSION"
|
|
If ([string]::IsNullOrEmpty($version)) { $version = "latest" }
|
|
|
|
Write-Output "--- Installing $channel $product $version"
|
|
$package_file = $(C:\opscode\omnibus-toolchain\bin\install-omnibus-product.ps1 -Product "$product" -Channel "$channel" -Version "$version" | Select-Object -Last 1)
|
|
|
|
Write-Output "--- Verifying omnibus package is signed"
|
|
C:\opscode\omnibus-toolchain\bin\check-omnibus-package-signed.ps1 "$package_file"
|
|
|
|
Write-Output "--- Running verification for $channel $product $version"
|
|
|
|
# reload Env:PATH to ensure it gets any changes that the install made (e.g. C:\opscode\inspec\bin\ )
|
|
$Env:PATH = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
|
|
|
|
$Env:Path = "C:\opscode\$product\bin;C:\opscode\$product\embedded\bin;$Env:PATH"
|
|
Write-Host "+++ Testing $Plan"
|
|
|
|
Set-Location test/artifact
|
|
rake
|
|
If ($lastexitcode -ne 0) { Exit $lastexitcode }
|