coverage.sh 272 B

12345678910
  1. #!/bin/sh -eux
  2. curl https://cmake.org/files/v3.4/cmake-3.4.0-Linux-x86_64.tar.gz | tar xz -C /tmp --strip 1
  3. /tmp/bin/cmake -DCOVERAGE=true .
  4. make
  5. make test
  6. pip install --user cpp-coveralls 'requests[security]'
  7. coveralls --exclude third-party --gcov-options '\-lp'; fi