ci: exit 1 when build fail (#1695)

Like this:

```
FAIL	github.com/gin-gonic/gin [build failed]
```
This commit is contained in:
thinkerou 2018-12-26 00:27:46 +08:00 committed by Bo-Yi Wu
parent 1b34e8e8de
commit 0bfc9cbcdb
1 changed files with 4 additions and 1 deletions

View File

@ -19,6 +19,9 @@ test:
if grep -q "^--- FAIL" tmp.out; then \
rm tmp.out; \
exit 1; \
elif grep -q "build failed" tmp.out; then \
rm tmp.out; \
exit; \
fi; \
if [ -f profile.out ]; then \
cat profile.out | grep -v "mode:" >> coverage.out; \