File tree 1 file changed +10
-9
lines changed
1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -21,21 +21,22 @@ before_script:
21
21
- golint -set_exit_status ./...
22
22
- go vet ./... | grep ':' && false || true
23
23
- go test -v -cover ./...
24
+
25
+ script :
24
26
- >-
25
27
if [ -n "$TRAVIS_TAG" ]; then
26
28
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;
27
29
$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;
28
34
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
34
35
- >-
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;
39
40
fi
40
41
41
42
deploy :
You can’t perform that action at this time.
0 commit comments