mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
20 lines
518 B
YAML
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)
|