Changes between Version 16 and Version 17 of TravisCoverals


Ignore:
Timestamp:
May 20, 2017, 7:50:42 AM (5 years ago)
Author:
Antony Polukhin
Comment:

Updated AppveyorCI

Legend:

Unmodified
Added
Removed
Modified
  • TravisCoverals

    v16 v17  
    213213# and how it can be used with Boost libraries.
    214214#
    215 # File revision #4
     215# File revision #5
    216216
    217217init:
     
    234234before_build:
    235235    - set PATH=%PATH%;C:\\MinGW\\bin
    236     # Set this to the name of the library
    237     - set PROJECT_TO_TEST=%APPVEYOR_PROJECT_NAME%
    238     - echo "Testing %PROJECT_TO_TEST%"
     236    - echo "Testing %APPVEYOR_PROJECT_NAME%"
    239237    # Cloning Boost libraries (fast nondeep cloning)
    240238    - set BOOST=C:/boost-local
     
    244242    - git fetch --depth=1
    245243    - git checkout %BRANCH_TO_TEST%
    246     - git submodule update --init --merge
     244    - git submodule update --init --merge --jobs 16
    247245    - git remote set-branches --add origin %BRANCH_TO_TEST%
    248     - git pull --recurse-submodules
     246    #- git pull --recurse-submodules        # Updaes submodules to most recent version. Not required
    249247    - rm -rf %BOOST%/libs/%BOOST_REMOVE%
    250     - mv %APPVEYOR_BUILD_FOLDER% %BOOST%/libs/%PROJECT_TO_TEST%
    251     - set TRAVIS_BUILD_DIR=%BOOST%/libs/%PROJECT_TO_TEST%
     248    - mv %APPVEYOR_BUILD_FOLDER% %BOOST%/libs/%APPVEYOR_PROJECT_NAME%
    252249
    253250build_script:
     
    255252    - bootstrap.bat
    256253    - b2.exe headers
    257     - cd %BOOST%/libs/%PROJECT_TO_TEST%/test
     254    - cd %BOOST%/libs/%APPVEYOR_PROJECT_NAME%/test
    258255
    259256after_build: