Skip to content

Commit

Permalink
Merge branch 'ci-fix' into next
Browse files Browse the repository at this point in the history
Conflicts:
	.travis.yml
  • Loading branch information
peplin committed Aug 2, 2014
2 parents da645c6 + 37e375e commit e80ecce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ before_install:
- script/bootstrap.sh
- cd src
after_success:
- make coverage
- coveralls-lcov src/build/tests/coverage.info
- PLATFORM=TESTING make coverage
- coveralls-lcov build/tests/coverage.info
2 changes: 1 addition & 1 deletion script/bootstrap/devel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source $BOOTSTRAP_DIR/common.sh

echo "Installing dependencies for running test suite..."

if [ -z $CI ] && ! command -v lcov >/dev/null 2>&1; then
if ! command -v lcov >/dev/null 2>&1; then
if [ $OS == "cygwin" ]; then
echo "Missing lcov - Cygwin doesn't have a packaged version of lcov, and it's only required to calculate test suite coverage. We'll skip it."
elif [ $OS == "mac" ]; then
Expand Down

0 comments on commit e80ecce

Please sign in to comment.