2014-03-26 17:20:36 +04:00
language : go
2018-11-26 01:15:12 +03:00
go_import_path : github.com/sirupsen/logrus
2019-03-28 22:14:38 +03:00
git :
depth : 1
2017-05-15 13:45:16 +03:00
env :
2019-03-28 22:14:38 +03:00
- GO111MODULE=on
- GO111MODULE=off
2019-10-11 16:42:11 +03:00
go : [ 1.11 .x, 1.12.x, 1.13.x ]
2019-05-18 11:27:12 +03:00
os : [ linux, osx ]
matrix :
exclude :
- go : 1.12 .x
env : GO111MODULE=off
- go : 1.11 .x
os : osx
2019-03-28 22:14:38 +03:00
install :
2019-05-18 11:27:12 +03:00
- ./travis/install.sh
2019-03-28 22:14:38 +03:00
- if [[ "$GO111MODULE" == "on" ]]; then go mod download; fi
- if [[ "$GO111MODULE" == "off" ]]; then go get github.com/stretchr/testify/assert golang.org/x/sys/unix github.com/konsorten/go-windows-terminal-sequences; fi
script :
2019-05-18 11:27:12 +03:00
- ./travis/cross_build.sh
2019-03-28 22:14:38 +03:00
- export GOMAXPROCS=4
- export GORACE=halt_on_error=1
- go test -race -v ./...
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then go test -race -v -tags appengine ./... ; fi