vet w/ go 1.13; use normal go proxy instead of direct in CI
This commit is contained in:
parent
8543244498
commit
90277ea2e9
15
.travis.yml
15
.travis.yml
|
|
@ -3,13 +3,10 @@ sudo: false
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
# TODO: update the version used to vet to Go 1.13
|
|
||||||
- go: 1.11.x
|
- go: 1.11.x
|
||||||
env: GO111MODULE=off
|
env: GO111MODULE=off
|
||||||
- go: 1.11.x
|
- go: 1.11.x
|
||||||
env:
|
env: GO111MODULE=on
|
||||||
- GO111MODULE=on
|
|
||||||
- VET=1
|
|
||||||
- go: 1.12.x
|
- go: 1.12.x
|
||||||
env: GO111MODULE=off
|
env: GO111MODULE=off
|
||||||
- go: 1.12.x
|
- go: 1.12.x
|
||||||
|
|
@ -17,15 +14,11 @@ matrix:
|
||||||
- go: 1.13.x
|
- go: 1.13.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=on
|
- GO111MODULE=on
|
||||||
- GOPROXY=direct
|
- VET=1
|
||||||
- go: 1.14.x
|
- go: 1.14.x
|
||||||
env:
|
env: GO111MODULE=on
|
||||||
- GO111MODULE=on
|
|
||||||
- GOPROXY=direct
|
|
||||||
- go: tip
|
- go: tip
|
||||||
env:
|
env: GO111MODULE=on
|
||||||
- GO111MODULE=on
|
|
||||||
- GOPROXY=direct
|
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- if [[ "$VET" = 1 ]]; then make ci; else make deps test; fi
|
- if [[ "$VET" = 1 ]]; then make ci; else make deps test; fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue