Files
nats-server/.travis.yml
Waldemar Quevedo eec1e64b35 Try updating Travis
Signed-off-by: Waldemar Quevedo <wally@synadia.com>
2021-03-15 10:02:38 -07:00

53 lines
1.4 KiB
YAML

dist: focal
language: go
go:
- 1.16.x
- 1.15.x
addons:
apt:
packages:
- rpm
env:
- GO111MODULE=off
go_import_path: github.com/nats-io/nats-server
install:
- go get github.com/nats-io/nats.go/
- go get github.com/nats-io/nkeys
- go get github.com/nats-io/jwt
- go get -u honnef.co/go/tools/cmd/staticcheck
- go get -u github.com/client9/misspell/cmd/misspell
before_script:
# NOTE: -mod=readonly -modfile=go_test.mod here so that modules are not changed.
- GO_LIST=$(go list -mod=readonly -modfile=go_test.mod ./...)
# Build with what is in vendor and not fetch new deps.
- go build
- $(exit $(go fmt $GO_LIST | wc -l))
# Include test deps for go vet
- go vet -mod=readonly -modfile=go_test.mod $GO_LIST
- find . -type f -name "*.go" | grep -v "/vendor/" | xargs misspell -error -locale US
- staticcheck $GO_LIST
script:
- set -e
- go test -mod=readonly -modfile=go_test.mod -race -v -run=TestVersionMatchesTag ./server -count=1
# Disable for release.
#- go test -mod=readonly -modfile=go_test.mod -i ./...
#- go test -mod=readonly -modfile=go_test.mod -v -run=TestNoRace --failfast -p=1 ./...
#- if [[ "$TRAVIS_GO_VERSION" =~ 1.15 ]]; then ./scripts/cov.sh TRAVIS; else go test -v -race -p=1 --failfast ./...; fi
- set +e
deploy:
provider: script
cleanup: true
script: curl -sL http://git.io/goreleaser | bash
on:
tags: true
condition: $TRAVIS_GO_VERSION =~ 1.16