mirror of
https://github.com/liuk7071/ChonkyStation.git
synced 2025-04-02 10:52:38 -04:00
7 lines
No EOL
237 B
Bash
7 lines
No EOL
237 B
Bash
#!/bin/sh
|
|
|
|
if test "${BUILD_TYPE}" = "Coverage"; then
|
|
coveralls-lcov ${TRAVIS_BUILD_DIR}/build/coverage.info
|
|
cd ${TRAVIS_BUILD_DIR}/build
|
|
bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
|
|
fi |