Changes between Version 16 and Version 17 of TravisCoverals
- Timestamp:
- May 20, 2017, 7:50:42 AM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TravisCoverals
v16 v17 213 213 # and how it can be used with Boost libraries. 214 214 # 215 # File revision # 4215 # File revision #5 216 216 217 217 init: … … 234 234 before_build: 235 235 - 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%" 239 237 # Cloning Boost libraries (fast nondeep cloning) 240 238 - set BOOST=C:/boost-local … … 244 242 - git fetch --depth=1 245 243 - git checkout %BRANCH_TO_TEST% 246 - git submodule update --init --merge 244 - git submodule update --init --merge --jobs 16 247 245 - git remote set-branches --add origin %BRANCH_TO_TEST% 248 - git pull --recurse-submodules246 #- git pull --recurse-submodules # Updaes submodules to most recent version. Not required 249 247 - 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% 252 249 253 250 build_script: … … 255 252 - bootstrap.bat 256 253 - b2.exe headers 257 - cd %BOOST%/libs/% PROJECT_TO_TEST%/test254 - cd %BOOST%/libs/%APPVEYOR_PROJECT_NAME%/test 258 255 259 256 after_build: