mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2024-12-26 21:04:23 +08:00
23 lines
681 B
YAML
23 lines
681 B
YAML
language: c
|
|
language: cpp
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
|
|
install:
|
|
- sudo apt-get -q install protobuf-compiler libprotobuf-dev libprotoc-dev valgrind lcov
|
|
- sudo pip install cpp-coveralls
|
|
|
|
script:
|
|
- ./autogen.sh
|
|
- ./configure && make distcheck VERBOSE=1 && make clean
|
|
- ./configure --enable-valgrind-tests && make distcheck DISTCHECK_CONFIGURE_FLAGS="--enable-valgrind-tests" VERBOSE=1 && make clean
|
|
- if [ "$CC" = "gcc" ]; then ./configure --enable-code-coverage && make && make check; fi
|
|
|
|
after_success:
|
|
- if [ "$CC" = "gcc" ]; then cpp-coveralls --build-root . --exclude t/ --exclude /usr/include; fi
|