Merge pull request #1526 from eerhardt/UpdateCI

Enable installer tests in our CI.
This commit is contained in:
Eric Erhardt 2016-02-25 08:59:18 -06:00
commit 445b1b3adb
3 changed files with 16 additions and 2 deletions

View file

@ -69,10 +69,14 @@ try {
Write-Host "Running installer tests in Windows Container"
# --net="none" works around a networking issue on the containers on the CI machines.
# Since our installer tests don't require the network, it is fine to shut it off.
$MsiFileName = [System.IO.Path]::GetFileName($inputMsi)
docker run `
--rm `
-v "$testBin\:D:" `
-e "CLI_MSI=D:\$MsiFileName" `
--net="none" `
windowsservercore `
D:\xunit.console.exe D:\$testName.dll | Out-Host