mirror of
https://github.com/boostorg/conversion.git
synced 2025-08-01 21:44:31 +02:00
Fixed formatting in README and updated the AppveyorCI script
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
#[Boost.Conversion](http://boost.org/libs/conversion)
|
# [Boost.Conversion](http://boost.org/libs/conversion)
|
||||||
Boost.Conversion is one of the [Boost C++ Libraries](http://github.com/boostorg). This library improves program safety and clarity by performing otherwise messy conversions.
|
Boost.Conversion is one of the [Boost C++ Libraries](http://github.com/boostorg). This library improves program safety and clarity by performing otherwise messy conversions.
|
||||||
|
|
||||||
### Test results
|
### Test results
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
# See https://svn.boost.org/trac/boost/wiki/TravisCoverals for description of this file
|
# See https://svn.boost.org/trac/boost/wiki/TravisCoverals for description of this file
|
||||||
# and how it can be used with Boost libraries.
|
# and how it can be used with Boost libraries.
|
||||||
#
|
#
|
||||||
# File revision #3
|
# File revision #5
|
||||||
|
|
||||||
init:
|
init:
|
||||||
- set BRANCH_TO_TEST=%APPVEYOR_REPO_BRANCH% # Change to branch you wish to test. Use %APPVEYOR_REPO_BRANCH% for current branch.
|
- set BRANCH_TO_TEST=%APPVEYOR_REPO_BRANCH% # Change to branch you wish to test. Use %APPVEYOR_REPO_BRANCH% for current branch.
|
||||||
@@ -29,9 +29,7 @@ skip_tags: true
|
|||||||
|
|
||||||
before_build:
|
before_build:
|
||||||
- set PATH=%PATH%;C:\\MinGW\\bin
|
- set PATH=%PATH%;C:\\MinGW\\bin
|
||||||
# Set this to the name of the library
|
- echo "Testing %APPVEYOR_PROJECT_NAME%"
|
||||||
- set PROJECT_TO_TEST=%APPVEYOR_PROJECT_NAME%
|
|
||||||
- echo "Testing %PROJECT_TO_TEST%"
|
|
||||||
# Cloning Boost libraries (fast nondeep cloning)
|
# Cloning Boost libraries (fast nondeep cloning)
|
||||||
- set BOOST=C:/boost-local
|
- set BOOST=C:/boost-local
|
||||||
- git init %BOOST%
|
- git init %BOOST%
|
||||||
@@ -39,19 +37,17 @@ before_build:
|
|||||||
- git remote add --no-tags -t %BRANCH_TO_TEST% origin https://github.com/boostorg/boost.git
|
- git remote add --no-tags -t %BRANCH_TO_TEST% origin https://github.com/boostorg/boost.git
|
||||||
- git fetch --depth=1
|
- git fetch --depth=1
|
||||||
- git checkout %BRANCH_TO_TEST%
|
- git checkout %BRANCH_TO_TEST%
|
||||||
- git submodule update --init --merge
|
- git submodule update --init --merge --jobs 16
|
||||||
- git remote set-branches --add origin %BRANCH_TO_TEST%
|
- git remote set-branches --add origin %BRANCH_TO_TEST%
|
||||||
- git pull --recurse-submodules
|
#- git pull --recurse-submodules # Updaes submodules to most recent version. Not required
|
||||||
- git status
|
|
||||||
- rm -rf %BOOST%/libs/%BOOST_REMOVE%
|
- rm -rf %BOOST%/libs/%BOOST_REMOVE%
|
||||||
- mv %APPVEYOR_BUILD_FOLDER% %BOOST%/libs/%PROJECT_TO_TEST%
|
- mv %APPVEYOR_BUILD_FOLDER% %BOOST%/libs/%APPVEYOR_PROJECT_NAME%
|
||||||
- set TRAVIS_BUILD_DIR=%BOOST%/libs/%PROJECT_TO_TEST%
|
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64
|
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64
|
||||||
- bootstrap.bat
|
- bootstrap.bat
|
||||||
- b2.exe headers
|
- b2.exe headers
|
||||||
- cd %BOOST%/libs/%PROJECT_TO_TEST%/test
|
- cd %BOOST%/libs/%APPVEYOR_PROJECT_NAME%/test
|
||||||
|
|
||||||
after_build:
|
after_build:
|
||||||
before_test:
|
before_test:
|
||||||
|
Reference in New Issue
Block a user