From 3252ad1f4bc0e5e15135ec9d42a5dad8bd247db3 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Sun, 18 Mar 2018 15:40:07 +0000 Subject: [PATCH] Move download-boost-snapshot.py into ci directory Because __boost_check_library__ is complaining about it. --- .appveyor.yml | 2 +- .travis.yml | 2 +- {build => ci}/download-boost-snapshot.py | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename {build => ci}/download-boost-snapshot.py (100%) diff --git a/.appveyor.yml b/.appveyor.yml index ba7290e9..8d141afc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -18,7 +18,7 @@ environment: install: - set BOOST_ROOT=c:\projects\boost - cd c:\projects\ - - python %APPVEYOR_BUILD_FOLDER%\build\download-boost-snapshot.py master + - python %APPVEYOR_BUILD_FOLDER%\ci\download-boost-snapshot.py master - rd /s /q %BOOST_ROOT%\boost\unordered - cd %BOOST_ROOT%\tools\build - cmd /c bootstrap diff --git a/.travis.yml b/.travis.yml index cc1829f1..fa636c50 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,7 +70,7 @@ before_script: echo "Downloading ${download_url}" mkdir $HOME/download cd $HOME/download - python ${TRAVIS_BUILD_DIR}/build/download-boost-snapshot.py $snapshot + python ${TRAVIS_BUILD_DIR}/ci/download-boost-snapshot.py $snapshot mv * ${BOOST_ROOT} - rm -r ${BOOST_ROOT}/boost/unordered - cd ${BOOST_ROOT}/tools/build diff --git a/build/download-boost-snapshot.py b/ci/download-boost-snapshot.py similarity index 100% rename from build/download-boost-snapshot.py rename to ci/download-boost-snapshot.py