2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00

Hopefully final fixes for PS AZP.

This commit is contained in:
Rene Rivera
2020-02-12 08:19:08 -06:00
parent e1828e0d04
commit 20674e58d1

View File

@@ -643,12 +643,12 @@ stages:
cd ../..
displayName: Build
- powershell: |
$env:HOME = $env:HOMEDRIVE + $env:HOMEPATH
cd ${env:HOME}
wget https://dl.bintray.com/boostorg/release/${env:BOOST_VERSION}/source/boost_${env:BOOST_VERSION_U}.zip
7z x boost_${env:BOOST_VERSION_U}.zip
cd boost_${env:BOOST_VERSION_U}
echo "using" "msvc" ";" > ${env:HOME}/user-config.jam
$env:HOME = "$env:HOMEDRIVE" + "$env:HOMEPATH"
cd "${env:HOME}"
Invoke-WebRequest "https://dl.bintray.com/boostorg/release/${env:BOOST_VERSION}/source/boost_${env:BOOST_VERSION_U}.zip" -OutFile "boost_${env:BOOST_VERSION_U}.zip"
7z x "boost_${env:BOOST_VERSION_U}.zip"
cd "boost_${env:BOOST_VERSION_U}"
echo "using" "msvc" ";" > "${env:HOME}/user-config.jam"
& "${env:BUILD_SOURCESDIRECTORY}\src\engine\b2.exe" "--boost-build=${env:BUILD_SOURCESDIRECTORY}/src" --debug-configuration --build-type=complete --layout=versioned -n -d1 toolset=msvc install
displayName: Test