mirror of
https://github.com/libevent/libevent.git
synced 2025-01-31 09:12:55 +08:00
Use coveralls.io via travis
This commit is contained in:
parent
40fbffc0df
commit
9ac000c724
24
.travis.yml
24
.travis.yml
@ -2,8 +2,10 @@ os:
|
||||
- linux
|
||||
- osx
|
||||
sudo: false
|
||||
|
||||
env:
|
||||
matrix:
|
||||
- EVENT_BUILD_METHOD=cmake EVENT_CMAKE_OPTIONS="-DEVENT__COVERAGE=ON -DCMAKE_BUILD_TYPE=debug" COVERALLS=yes
|
||||
- EVENT_BUILD_METHOD=cmake EVENT_CMAKE_OPTIONS=""
|
||||
- EVENT_BUILD_METHOD=cmake EVENT_CMAKE_OPTIONS="-DEVENT__DISABLE_OPENSSL=ON"
|
||||
- EVENT_BUILD_METHOD=cmake EVENT_CMAKE_OPTIONS="-DEVENT__DISABLE_THREAD_SUPPORT=ON"
|
||||
@ -15,11 +17,16 @@ env:
|
||||
- EVENT_BUILD_METHOD=autotools EVENT_CONFIGURE_OPTIONS="--disable-thread-support"
|
||||
- EVENT_BUILD_METHOD=autotools EVENT_CONFIGURE_OPTIONS="--disable-debug-mode"
|
||||
- EVENT_BUILD_METHOD=autotools EVENT_CONFIGURE_OPTIONS="--disable-malloc-replacement"
|
||||
|
||||
language: c
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
|
||||
before_install:
|
||||
- if [ -n "$COVERALLS" ]; then
|
||||
pip install --user cpp-coveralls;
|
||||
fi
|
||||
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
||||
brew update;
|
||||
brew uninstall libtool && brew install libtool;
|
||||
@ -36,6 +43,7 @@ before_install:
|
||||
CFLAGS=-I$CMAKE_INCLUDE_PATH
|
||||
LDFLAGS=-L$CMAKE_LIBRARY_PATH;
|
||||
fi
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
@ -45,6 +53,8 @@ addons:
|
||||
- automake
|
||||
- autoconf
|
||||
- cmake
|
||||
- lcov
|
||||
|
||||
script:
|
||||
- if [ "$EVENT_BUILD_METHOD" = "autotools" ]; then
|
||||
./autogen.sh &&
|
||||
@ -59,5 +69,19 @@ script:
|
||||
cmake --build . &&
|
||||
CTEST_OUTPUT_ON_FAILURE=1 cmake --build . --target verify;
|
||||
fi
|
||||
|
||||
after_script:
|
||||
- if [ -n "$COVERALLS" ]; then
|
||||
coveralls
|
||||
--build-root .
|
||||
--root ..
|
||||
--exclude test
|
||||
--exclude sample
|
||||
--exclude cmake
|
||||
--exclude build/CMakeFiles/CheckTypeSize
|
||||
--exclude build/CMakeFiles/CompilerIdC
|
||||
--gcov-options '\-lp';
|
||||
fi
|
||||
|
||||
notifications:
|
||||
irc: "irc.oftc.net#libevent"
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
[![Appveyor Win32 Build Status](https://ci.appveyor.com/api/projects/status/github/libevent/libevent?branch=master&svg=true)](https://ci.appveyor.com/project/nmathewson/libevent)
|
||||
[![Travis Build Status](https://travis-ci.org/libevent/libevent.svg?branch=master)](https://travis-ci.org/libevent/libevent)
|
||||
[![Coverage Status](https://coveralls.io/repos/github/libevent/libevent/badge.svg)](https://coveralls.io/github/libevent/libevent)
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user