Update Travis to Go 1.11 and Go 1.10.4

See #5115
This commit is contained in:
Bjørn Erik Pedersen 2018-08-25 11:26:19 +02:00
parent e6eda2a370
commit d32ff16fd6
4 changed files with 6 additions and 6 deletions

View file

@ -6,8 +6,8 @@ env:
git: git:
depth: false depth: false
go: go:
- 1.9.7 - "1.10.4"
- "1.10.3" - 1.11
- tip - tip
os: os:
- linux - linux

View file

@ -34,7 +34,7 @@
[[constraint]] [[constraint]]
name = "github.com/magefile/mage" name = "github.com/magefile/mage"
version = "v1" version = "^v2.2.0"
[[constraint]] [[constraint]]
branch = "master" branch = "master"

View file

@ -265,7 +265,7 @@ func CheckVendor() error {
} }
func isGoLatest() bool { func isGoLatest() bool {
return strings.Contains(runtime.Version(), "1.10") return strings.Contains(runtime.Version(), "1.11")
} }
func buildTags() string { func buildTags() string {