Home | History | Annotate | Download | only in .ci
      1 #!/bin/bash
      2 
      3 set -x
      4 set -o errexit -o nounset
      5 
      6 if test x"$TRAVIS_REPO_SLUG" != x"harfbuzz/harfbuzz"; then exit; fi
      7 
      8 pip install --user nose
      9 pip install --user cpp-coveralls
     10 export PATH=$HOME/.local/bin:$PATH
     11 
     12 rm -f src/.libs/NONE.gcov
     13 touch src/NONE
     14 coveralls -e docs
     15