2014-03-26 17:20:36 +04:00
|
|
|
language: go
|
2017-05-15 13:45:16 +03:00
|
|
|
env:
|
|
|
|
- GOMAXPROCS=4 GORACE=halt_on_error=1
|
2018-09-06 15:49:06 +03:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- go: 1.10.x
|
|
|
|
install:
|
|
|
|
- go get github.com/stretchr/testify/assert
|
2018-09-08 10:44:05 +03:00
|
|
|
- go get golang.org/x/crypto/ssh/terminal
|
2018-09-06 15:49:06 +03:00
|
|
|
- go get golang.org/x/sys/unix
|
|
|
|
- go get golang.org/x/sys/windows
|
2018-09-08 10:44:05 +03:00
|
|
|
script:
|
|
|
|
- go test -race -v ./...
|
2018-09-06 15:49:06 +03:00
|
|
|
- go: 1.11.x
|
2018-09-08 10:44:05 +03:00
|
|
|
env: GO111MODULE=on
|
2018-09-08 09:27:05 +03:00
|
|
|
install:
|
|
|
|
- go mod download
|
2018-09-08 10:44:05 +03:00
|
|
|
script:
|
|
|
|
- go test -race -v ./...
|
|
|
|
- go: 1.11.x
|
|
|
|
env: GO111MODULE=off
|
|
|
|
install:
|
|
|
|
- go get github.com/stretchr/testify/assert
|
|
|
|
- go get golang.org/x/crypto/ssh/terminal
|
|
|
|
- go get golang.org/x/sys/unix
|
|
|
|
- go get golang.org/x/sys/windows
|
|
|
|
script:
|
|
|
|
- go test -race -v ./...
|
2018-09-17 20:56:18 +03:00
|
|
|
- go: 1.10.x
|
|
|
|
install:
|
|
|
|
- go get github.com/stretchr/testify/assert
|
|
|
|
- go get golang.org/x/crypto/ssh/terminal
|
|
|
|
- go get golang.org/x/sys/unix
|
|
|
|
- go get golang.org/x/sys/windows
|
|
|
|
script:
|
|
|
|
- go test -race -v -tags appengine ./...
|
|
|
|
- go: 1.11.x
|
|
|
|
env: GO111MODULE=on
|
|
|
|
install:
|
|
|
|
- go mod download
|
|
|
|
script:
|
|
|
|
- go test -race -v -tags appengine ./...
|
|
|
|
- go: 1.11.x
|
|
|
|
env: GO111MODULE=off
|
|
|
|
install:
|
|
|
|
- go get github.com/stretchr/testify/assert
|
|
|
|
- go get golang.org/x/crypto/ssh/terminal
|
|
|
|
- go get golang.org/x/sys/unix
|
|
|
|
- go get golang.org/x/sys/windows
|
|
|
|
script:
|
|
|
|
- go test -race -v -tags appengine ./...
|