Skip to content

Commit

Permalink
forgotten files added
Browse files Browse the repository at this point in the history
  • Loading branch information
Rostislav Vasilikhin committed Feb 8, 2016
1 parent e535dc0 commit 2b88c63
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ addons:
sources: ['kalakris-cmake', 'ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
packages: ['cmake', 'g++-4.8', 'clang-3.7']
before_install:
- if [ $TRAVIS_OS_NAME == linux ] && [ $CC == gcc ]; then pip install --user cpp-coveralls; export VMF_GCOV_OPTS='-DCMAKE_BUILD_TYPE=Debug -DCODE_COVERAGE=ON'; fi
- if [ $TRAVIS_OS_NAME == linux ] && [ $CC == gcc ]; then export VMF_GCOV_OPTS='-DCMAKE_BUILD_TYPE=Debug -DCODE_COVERAGE=ON'; fi
- if [ "$VMF_GCOV_OPTS" != "" ]; then pip install --user cpp-coveralls; fi
- if [ "$VMF_GCOV_OPTS" != "" ]; then pip install --user codecov; fi
before_script:
- mkdir ../build
- cd ../build
Expand All @@ -32,6 +34,8 @@ script:
- ./unit-tests-ds
- if [ $TRAVIS_OS_NAME == osx ] && [ $CC == clang ]; then cd ..; mkdir ios; cd ios; python ../../vmf/platforms/ios/build_ios_framework.py $(pwd); fi
after_success:
- if [ '$VMF_GCOV_OPTS' != '' ]; then coveralls --exclude build/CMakeFiles --exclude vmf/3rdparty --exclude vmf/modules/vmfcore/test --exclude vmf/modules/vmdatasource/test --gcov-options '\-lp' --gcov gcov-4.8 --root ../.. --build-root ..; fi
- if [ "$VMF_GCOV_OPTS" != "" ]; then coveralls --exclude build/CMakeFiles --exclude vmf/3rdparty --exclude vmf/modules/vmfcore/test --exclude vmf/modules/vmdatasource/test --gcov-options '\-lp' --gcov gcov-4.8 --root ../.. --build-root ..; fi
- if [ "$VMF_GCOV_OPTS" != "" ]; then codecov --root ../.. --gcov-exec gcov-4.8; fi
notifications:
email: false
webhooks: https://coveralls.io/webhook?repo_token=kXDrxzQdBiK3aEgUSlsbL3IVMP0Mvr4oH
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[![Build Status](https://travis-ci.org/apavlenko/vmf.svg?branch=vmf-3.0)](https://travis-ci.org/apavlenko/vmf)
[![Build Status](https://ci.appveyor.com/api/projects/status/github/apavlenko/vmf?branch=vmf-3.0&svg=true)](https://ci.appveyor.com/project/apavlenko/vmf/branch/vmf-3.0)
[![Coverage Status](https://coveralls.io/repos/github/apavlenko/vmf/badge.svg?branch=vmf-3.0)](https://coveralls.io/github/apavlenko/vmf?branch=vmf-3.0)
[![codecov.io](https://codecov.io/github/apavlenko/vmf/coverage.svg?branch=vmf-3.0)](https://codecov.io/github/apavlenko/vmf?branch=vmf-3.0)

Video Metadata Framework
------------------------
Expand Down

0 comments on commit 2b88c63

Please sign in to comment.