Skip to content

Commit b861cc3

Browse files
committed
Fixing Goveralls reporting
1 parent 1106c86 commit b861cc3

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.travis.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,22 @@ before_script:
2121
- golint -set_exit_status ./...
2222
- go vet ./... | grep ':' && false || true
2323
- go test -v -cover ./...
24+
25+
script:
2426
- >-
2527
if [ -n "$TRAVIS_TAG" ]; then
2628
CGO_ENABLED=0 go build -ldflags="-s -w -X main.version=${TRAVIS_TAG:1} -X main.build=${TRAVIS_COMMIT::6}" -o $GOPATH/bin/gbt ./cmd/gbt;
2729
$GOPATH/bin/gbt -version | egrep " ${TRAVIS_TAG:1}, build ${TRAVIS_COMMIT::6}\$";
30+
dist/build.sh;
31+
else
32+
go install github.com/jtyr/gbt/cmd/gbt;
33+
$GOPATH/bin/gbt -version;
2834
fi
29-
30-
script:
31-
- go install github.com/jtyr/gbt/cmd/gbt
32-
- $GOPATH/bin/gbt -version
33-
- if [ -n "$TRAVIS_TAG" ]; then dist/build.sh; fi
3435
- >-
35-
if [ "$TRAVIS_PULL_REQUEST" = 'true' ]; then
36-
for N in $(go list ./...); do go test -v -covermode=count -coverprofile=${N//\//_}.out $N 1>/dev/null; done;
37-
echo 'mode:'' count' > coverage.out && cat *.out | grep -v 'mode:' | sort -r | awk '{if($1 != last) {print $0;last=$1}}' >> coverage.out;
38-
$HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN;
36+
if [ "$TRAVIS_PULL_REQUEST" = 'false' ]; then
37+
for N in $(go list ./...); do go test -v -covermode=count -coverprofile=${N//\//_}.out ${N/_$PWD\//.\/} 1>/dev/null; done;
38+
echo 'mode: count' > coverage.out && cat *.out | grep -v 'mode:' | sort -r | awk '{if($1 != last) {print $0;last=$1}}' >> coverage.out;
39+
$GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci;
3940
fi
4041
4142
deploy:

0 commit comments

Comments
 (0)