-
Notifications
You must be signed in to change notification settings - Fork 284
/
.travis.yml
72 lines (71 loc) · 2.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
os:
- linux
- windows
vm:
size: 2x-large
language: go
go:
- "1.21.4"
- "1.20.11"
addons:
apt:
packages:
- rpm
env:
- GO111MODULE=on
go_import_path: github.com/nats-io/nats-streaming-server
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
if [[ "$TRAVIS_GO_VERSION" =~ 1.20 ]]; then
go install honnef.co/go/tools/cmd/staticcheck@latest;
go install github.com/client9/misspell/cmd/misspell@latest;
fi;
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;
if [[ "$TRAVIS_GO_VERSION" =~ 1.20 ]]; then
find . -type f -name "*.go" | grep -v "/spb/" | xargs misspell -error -locale US;
staticcheck $GO_LIST;
fi;
fi
script:
- set -e
- if [[ $TRAVIS_TAG ]]; then go test -v -run=TestVersionMatchesTag ./server -sql=false; fi
- if [[ ! $TRAVIS_TAG ]]; then
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;";
if [[ "$TRAVIS_GO_VERSION" =~ 1.21 ]]; then
./scripts/cov.sh TRAVIS;
else
go test -v -p=1 ./... -count=1 -vet=off -failfast;
fi;
fi;
fi
- if [[ ! $TRAVIS_TAG ]]; then
if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
if [[ "$TRAVIS_GO_VERSION" =~ 1.21 ]]; then
go build;
else
go install;
go test -v -p=1 ./... -count=1 -vet=off -sql=false -failfast;
fi;
fi;
fi
- set +e
after_success:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
if [[ ! $TRAVIS_TAG ]]; then if [[ "$TRAVIS_GO_VERSION" =~ 1.21 ]]; then $HOME/gopath/bin/goveralls -coverprofile=acc.out -service travis-ci; fi; fi;
fi
deploy:
provider: script
cleanup: true
script: curl -sL http://git.io/goreleaser | bash
on:
tags: true
condition: ("$TRAVIS_OS_NAME" = "linux") && ("$TRAVIS_GO_VERSION" =~ "1.20")