From 473155eebe002fffb85d913b997be7725258b119 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 10 Sep 2016 13:21:11 +0300 Subject: [PATCH] Update .travis.yml to not checkout as well. --- .travis.yml | 10 ++++------ appveyor.yml | 4 +--- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index cfbf381..1d32efa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,9 +16,9 @@ branches: - develop install: - - git clone -b $TRAVIS_BRANCH https://github.com/boostorg/boost.git boost - - cd boost - - git submodule init libs/bind + - cd .. + - git clone -b $TRAVIS_BRANCH https://github.com/boostorg/boost.git boost-root + - cd boost-root - git submodule init libs/align - git submodule init libs/assert - git submodule init libs/config @@ -37,9 +37,7 @@ install: - git submodule init tools/build - git submodule init tools/inspect - git submodule update - - cd libs/bind - - git checkout -q $TRAVIS_COMMIT - - cd ../.. + - cp -r $TRAVIS_BUILD_DIR/* libs/bind - ./bootstrap.sh - ./b2 headers diff --git a/appveyor.yml b/appveyor.yml index 02fe282..5aa53fc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,9 +33,7 @@ install: - git submodule init tools/build - git submodule init tools/inspect - git submodule update - - cd libs\bind - - xcopy %APPVEYOR_BUILD_FOLDER% /s /e /q - - cd ..\.. + - xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\bind - bootstrap - b2 headers