15 lines
263 B
Bash
15 lines
263 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -x
|
||
|
set -o errexit -o nounset
|
||
|
|
||
|
if test "x$TRAVIS_SLUG" != x"harfbuzz/harfbuzz"; then exit; fi
|
||
|
|
||
|
pip install --user nose
|
||
|
pip install --user cpp-coveralls
|
||
|
export PATH=$HOME/.local/bin:$PATH
|
||
|
|
||
|
rm -f src/.libs/NONE.gcov
|
||
|
touch src/NONE
|
||
|
coveralls -e docs
|