qamqp/.travis.yml

18 lines
353 B
YAML
Raw Normal View History

2014-06-04 05:33:38 +08:00
language: cpp
2014-09-17 03:10:34 +08:00
cache: apt
2014-06-04 05:33:38 +08:00
env:
- QT_SELECT=qt5
- QT_SELECT=qt6
2014-06-04 05:38:01 +08:00
services:
- rabbitmq
2014-09-17 03:10:34 +08:00
before_install:
- sudo pip install cpp-coveralls
install:
- tests/files/travis/test-deps.sh
2014-06-04 05:33:38 +08:00
script:
2014-09-17 03:10:34 +08:00
- qmake -config gcov
2014-06-04 05:33:38 +08:00
- make
2014-09-17 03:10:34 +08:00
- make check
after_success:
- coveralls -e tutorials -e tests -E ".moc_*.cpp" -E ".*.moc*" -E ".rcc*" --gcov-options '\-lp'