1
0
mirror of https://gitlab.xiph.org/xiph/ezstream.git synced 2024-09-15 04:08:07 -04:00
ezstream/circle.yml
2017-07-07 15:33:22 +02:00

20 lines
518 B
YAML

dependencies:
pre:
- sudo apt-get install lcov check libshout-dev libtagc0-dev libxml2-dev
override:
- ./autogen.sh
test:
override:
- ./configure
- make distcheck distclean
- ./configure CFLAGS='-O0 -fprofile-arcs -ftest-coverage -fstack-protector-all'
- make check
- mkdir coverage
- lcov --capture --output-file coverage/ezstream.lcov --rc lcov_branch_coverage=1 --directory src --test-name ezstream
- make distclean
post:
- bash <(curl -s https://codecov.io/bash)