Travis CI: Run gometalinter.

pull/28/head
JeremyRand 7 years ago
parent bd2f2a0e13
commit 4c47444896
No known key found for this signature in database
GPG Key ID: B3F2D165786D6570

@ -1,6 +1,6 @@
#!/bin/bash
travis_retry go get github.com/tcnksm/ghr github.com/mitchellh/gox
travis_retry go get github.com/tcnksm/ghr github.com/mitchellh/gox gopkg.in/alecthomas/gometalinter.v1
go test -v ./...
RESULT=$?
@ -10,6 +10,44 @@ if [ "$RESULT" != "0" ]; then
return $RESULT
fi
# Static analysis
gometalinter.v1 --install
echo ""
echo "gometalinter critical (should be no warnings):"
gometalinter.v1 --enable-all \
--disable=aligncheck \
--disable=deadcode \
--disable=dupl \
--disable=errcheck \
--disable=gas \
--disable=gocyclo \
--disable=gofmt \
--disable=goimports \
--disable=golint \
--disable=gosimple \
--disable=gotype \
--disable=ineffassign \
--disable=lll \
--disable=misspell \
--disable=staticcheck \
--disable=unconvert \
--disable=unparam \
--disable=unused \
--concurrency=3 \
--deadline=10m \
./...
STATICRESULT1=$?
echo ""
echo "gometalinter non-critical (warnings expected):"
gometalinter.v1 --enable-all \
--concurrency=3 \
--deadline=10m \
./...
STATICRESULT2=$?
# Test cross-compilation. The binaries produced are also used for release
# upload in after_success if this is a release tag.
@ -29,6 +67,8 @@ RESULT2=$?
echo cgo crosscompile exited with code $RESULT1
echo non-cgo crosscompile exited with code $RESULT2
echo critical gometalinter exited with code $STATICRESULT1
echo non-critical gometalinter exited with code $STATICRESULT2
if [ "$RESULT1" != "0" ]; then
return $RESULT1
@ -36,3 +76,6 @@ fi
if [ "$RESULT2" != "0" ]; then
return $RESULT2
fi
if [ "$STATICRESULT1" != "0" ]; then
return $STATICRESULT1
fi

Loading…
Cancel
Save