From 661bb71ff376c3dd180fb6b174939dacd15458ae Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Tue, 17 Dec 2019 08:04:30 -0500 Subject: [PATCH] Update Travis and Appveyor configurations --- .appveyor.yml | 12 +++++++----- .travis.yml | 11 +++++++---- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index eee4d10..220fc08 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -39,18 +39,20 @@ install: - cd .. - git clone -b %BOOST_BRANCH% https://github.com/boostorg/boost.git boost - cd boost - - git submodule update --init tools/build - - git submodule update --init libs/config - - git submodule update --init tools/boostdep + - git submodule init libs/assert + - git submodule init libs/config + - git submodule init libs/core + - git submodule init libs/headers + - git submodule init tools/build + - git submodule init tools/boost_install + - git submodule update - xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\io\ - - python tools/boostdep/depinst/depinst.py io - cmd /c bootstrap - b2 headers build: off test_script: - - PATH=%ADDPATH%%PATH% - if not "%CXXSTD%" == "" set CXXSTD=cxxstd=%CXXSTD% - if not "%ADDRMD%" == "" set ADDRMD=address-model=%ADDRMD% - b2 libs/io/test toolset=%TOOLSET% %CXXSTD% %ADDRMD% diff --git a/.travis.yml b/.travis.yml index 82da550..2ef4ce5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -279,12 +279,15 @@ install: - cd .. - git clone -b $BOOST_BRANCH https://github.com/boostorg/boost.git boost - cd boost - - git submodule update --init tools/build - - git submodule update --init libs/config - - git submodule update --init tools/boostdep + - git submodule init libs/assert + - git submodule init libs/config + - git submodule init libs/core + - git submodule init libs/headers + - git submodule init tools/build + - git submodule init tools/boost_install + - git submodule update - mkdir -p libs/io - cp -r $TRAVIS_BUILD_DIR/* libs/io - - python tools/boostdep/depinst/depinst.py io - ./bootstrap.sh - ./b2 headers