summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/sirupsen/logrus/.travis.yml
blob: 1f953bebdc9683af1b2d7ed50045911d07b17843 (plain)
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
language: go
env:
  - GOMAXPROCS=4 GORACE=halt_on_error=1
matrix:
  include:
    - 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 ./...
    - go: 1.11.x
      env: GO111MODULE=on
      install:
        - go mod download
      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 ./...
    - 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 ./...