5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 07:52:32 +00:00
matterbridge/vendor/github.com/sirupsen/logrus/.travis.yml

26 lines
723 B
YAML
Raw Normal View History

language: go
go_import_path: github.com/sirupsen/logrus
2019-06-16 21:33:25 +00:00
git:
depth: 1
env:
2019-06-16 21:33:25 +00:00
- GO111MODULE=on
- GO111MODULE=off
go: [ 1.11.x, 1.12.x ]
os: [ linux, osx ]
matrix:
2019-06-16 21:33:25 +00:00
exclude:
- go: 1.12.x
env: GO111MODULE=off
- go: 1.11.x
2019-06-16 21:33:25 +00:00
os: osx
install:
- ./travis/install.sh
- 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:
- ./travis/cross_build.sh
- 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