core/script/cibuild

15 lines
241 B
Plaintext
Raw Normal View History

2015-09-17 07:38:52 +00:00
#!/bin/sh
# script/cibuild: Setup environment for CI to run tests. This is primarily
# designed to run on the continuous integration server.
2015-09-20 04:33:24 +00:00
cd "$(dirname "$0")/.."
script/test coverage
2015-09-19 19:29:23 +00:00
STATUS=$?
coveralls
2015-09-19 19:29:23 +00:00
exit $STATUS