2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-19 04:22:15 +00:00

Update config.yml

This commit is contained in:
Klemens Morgenstern
2019-04-06 22:19:11 +08:00
committed by GitHub
parent 94be279992
commit 12971db132

View File

@@ -53,15 +53,17 @@ jobs:
name: Building examples
command: |
cd $BOOST_REMOVE/example
../../../b2 -j8
../../../b2 -j8 address-model=64 architecture=x86 toolset=gcc cxxflags="-std=$CXX_STANDARD" -sBOOST_BUILD_PATH=. || RES=$? | tee build.log
python <(curl -s https://report.ci/annotate.py) --tool gcc --name "Circle CI Gcc Build (Examples)"
exit $RES
- run:
name: Running Unit tests
command: |
cd $BOOST/libs/project/test
../../../b2 -j8 with-valgrind address-model=64 architecture=x86 "testing.launcher=valgrind valgrind=on" toolset=gcc cxxflags="--coverage -std=$CXX_STANDARD" linkflags="--coverage" -sBOOST_BUILD_PATH=. || RES_1=$? | tee build.log
../../../b2 -j8 with-valgrind address-model=64 architecture=x86 "testing.launcher=valgrind valgrind=on" toolset=gcc cxxflags="--coverage -std=$CXX_STANDARD" linkflags="--coverage" -sBOOST_BUILD_PATH=. || RES_1=$? | tee -a build.log
../../../b2 -j8 without-valgrind address-model=64 architecture=x86 toolset=gc cxxflags="--coverage -std=$CXX_STANDARD" linkflags="--coverage" -sBOOST_BUILD_PATH=. || RES_2=$? | tee -a build.log
python <(curl -s https://report.ci/annotate.py) --tool gcc --name "Circle CI Gcc Build"
python <(curl -s https://report.ci/upload.py) --name "Circle CI Gcc Tests"
bash <(curl -s https://codecov.io/bash) -x gcov
exit $SUCCESS
exit $RES_1$RES_2