Skip to content

Commit

Permalink
chore(ci): replace AppVeyor boost download source
Browse files Browse the repository at this point in the history
  • Loading branch information
Prcuvu committed Dec 28, 2018
1 parent f00d56f commit a8ead41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ if not exist %BOOST_ROOT% set nocache=1

if %nocache% == 1 (
pushd C:\Libraries
appveyor DownloadFile http://cfhcable.dl.sourceforge.net/project/boost/boost/1.61.0/boost_1_61_0.7z
7z x boost_1_61_0.7z | find "ing archive"
cd boost_1_61_0
appveyor DownloadFile https://dl.bintray.com/boostorg/release/1.68.0/source/boost_1_68_0.7z
7z x boost_1_68_0.7z | find "ing archive"
cd boost_1_68_0
call .\bootstrap.bat
call .\b2.exe --prefix=%BOOST_ROOT% toolset=msvc-14.0 variant=release link=static threading=multi runtime-link=static define=BOOST_USE_WINAPI_VERSION=0x0501 cxxflags="/Zc:threadSafeInit- " --with-date_time --with-filesystem --with-locale --with-regex --with-signals --with-system --with-thread -q -d0 install
xcopy /e /i /y /q %BOOST_ROOT%\include\boost-1_61\boost %BOOST_ROOT%\boost
xcopy /e /i /y /q %BOOST_ROOT%\include\boost-1_68\boost %BOOST_ROOT%\boost
popd
if %ERRORLEVEL% NEQ 0 goto ERROR

Expand Down

0 comments on commit a8ead41

Please sign in to comment.