@ -43,12 +43,15 @@ steps:
Set-Content "env:$p" "$v"
Set-Content "env:$p" "$v"
}
}
# download and install python3 and add to path (since it's not installed in vs2015 image!)
if ($env:compiler -eq 'msvc2015') {
if ($env:compiler -eq 'msvc2015') {
# download and install python3 and add to path (since it's not installed in vs2015 image!)
Set-ExecutionPolicy Bypass -Scope Process -Force
Set-ExecutionPolicy Bypass -Scope Process -Force
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install python3 -y --no-progress --params "/InstallDir:C:\Python3"
choco install python3 -y --no-progress --params "/InstallDir:C:\Python3"
$env:Path = "C:\Python3;$env:Path"
$env:Path = "C:\Python3;$env:Path"
# add JDK installed in vs2015 image to PATH
$env:Path = "C:\java\jdk\jdk1.8.0_102\bin\;$env:Path"
}
}
# test_find_program exercises some behaviour which relies on .py being in PATHEXT
# test_find_program exercises some behaviour which relies on .py being in PATHEXT