Skip to content
This repository was archived by the owner on Jan 7, 2023. It is now read-only.

Commit f3967ac

Browse files
author
Andrey Pavlenko
committed
fixing badges + minor fixes to travis and appveyor configs
1 parent ba5e451 commit f3967ac

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

.travis.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# .travis.yml
2-
sudo: true
2+
sudo: false
33
git:
44
depth : 5
55
branches:
@@ -36,17 +36,14 @@ matrix:
3636
addons:
3737
apt:
3838
sources: ['george-edison55-precise-backports', 'ubuntu-toolchain-r-test', 'llvm']
39-
#sources: ['george-edison55-precise-backports', 'ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
4039
packages: ['cmake', 'cmake-data', 'g++-4.8', 'clang']
41-
#packages: ['cmake', 'cmake-data', 'g++-4.8', 'clang-3.7']
4240
before_install:
4341
- env
4442
- if [ $TRAVIS_OS_NAME == linux ]; then cat /proc/cpuinfo; fi
4543
# coverage
4644
- if [ "$VMF_GCOV_OPTS" != "" ]; then pip install --user cpp-coveralls; pip install --user codecov; fi
4745
# android
4846
- if [ "$VMF_ANDROID_BUILD" != "" ]; then time git clone --depth=1 https://github.com/apavlenko/android-ndk.git $HOME/android-ndk; export ANDROID_NDK=$HOME/android-ndk; fi
49-
#- if [ "$VMF_ANDROID_BUILD" != "" ]; then android list; fi
5047
- if [ "$VMF_ANDROID_BUILD" != "" ]; then android-update-sdk --components=sys-img-${VMF_CPU_ARCH}-${VMF_API_LEVEL}; fi
5148
before_script:
5249
- mkdir ../build
@@ -70,7 +67,7 @@ after_success:
7067
- cd $TRAVIS_BUILD_DIR/../build && pwd
7168
# coverage
7269
- 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 . > /dev/null; fi
73-
- if [ "$VMF_GCOV_OPTS" != "" ]; then codecov --root .. --gcov-exec gcov-4.8 > /dev/null; fi
70+
- if [ "$VMF_GCOV_OPTS" != "" ]; then codecov --root ../vmf --gcov-exec gcov-4.8 > /dev/null; fi
7471
notifications:
7572
email: false
7673
webhooks: https://coveralls.io/webhook?repo_token=jEvkHdxBatpMEmiw1Mo0r2vmUG5vwepAF

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://travis-ci.org/01org/vmf.svg?branch=master)](https://travis-ci.org/01org/vmf)
2-
[![Build status](https://ci.appveyor.com/api/projects/status/r5j9ocr4basnm7yj?svg=true)](https://ci.appveyor.com/project/eaniemey/vmf)
3-
[![Coverage Status](https://s3.amazonaws.com/assets.coveralls.io/badges/coveralls_79.svg)](https://coveralls.io/repos/github/01org/vmf/badge.svg?branch=master)
4-
[![codecov.io](https://codecov.io/github/01org/vmf/coverage.svg?branch=master)](https://codecov.io/github/01org/vmf?branch=master)
2+
[![Build status](https://ci.appveyor.com/api/projects/status/github/01org/vmf?branch=master&svg=true)](https://ci.appveyor.com/project/eaniemey/vmf)
3+
[![Coverage Status](https://coveralls.io/repos/github/01org/vmf/badge.svg?branch=master)](https://coveralls.io/github/01org/vmf)
4+
[![codecov.io](https://codecov.io/github/01org/vmf/coverage.svg?branch=master)](https://codecov.io/github/01org/vmf)
55

66
Video Metadata Framework
77
------------------------

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ clone_depth: 1
1111

1212
branches:
1313
only:
14-
- vmf-3.0
14+
- master
1515

1616
before_build:
1717
- mkdir _build

codecov.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# codecov.yml
2+
comment:
3+
layout: header, changes, diff
4+
coverage:
5+
ignore:
6+
- 3rdparty/.*
7+
- CMakeFiles/.*
8+
- test/.*
9+
- modules/vmdatasource/test/.*
10+
- modules/vmfcore/test/.*
11+
- usr/lib/.*

0 commit comments

Comments
 (0)