forked from nats-io/nats-streaming-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (51 loc) · 1.43 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
os:
- linux
- windows
language: go
go:
- 1.16.x
- 1.15.x
addons:
apt:
packages:
- rpm
env:
- GO111MODULE=off
go_import_path: github.com/nats-io/nats-streaming-server
install:
- go get -t ./...
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
go get -u honnef.co/go/tools/cmd/staticcheck;
go get -u github.com/client9/misspell/cmd/misspell;
go get -u github.com/go-sql-driver/mysql;
fi
services:
- mysql
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
GO_LIST=$(go list ./... | grep -v "/spb");
go install;
$(exit $(go fmt $GO_LIST | wc -l));
go vet $GO_LIST;
find . -type f -name "*.go" | grep -v "/vendor/" | grep -v "/spb/" | xargs misspell -error -locale US;
staticcheck $GO_LIST;
fi
script:
- set -e
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
mysql -u root -e "CREATE USER 'nss'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON *.* TO 'nss'@'localhost'; CREATE DATABASE test_nats_streaming;";
go test -i ./...;
if [[ "$TRAVIS_GO_VERSION" =~ 1.15 ]]; then ./scripts/cov.sh TRAVIS; else go test -v -failfast -p=1 ./...; fi;
fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
go install;
go test -v -p=1 ./... -count=1 -sql=false -failfast;
fi
- set +e
deploy:
provider: script
cleanup: true
script: curl -sL http://git.io/goreleaser | VERSION=v0.160.0 bash
on:
tags: true
condition: ("$TRAVIS_OS_NAME" = "linux") && ("$TRAVIS_GO_VERSION" =~ "1.16")