build: update to use go1.13 for the build
This commit is contained in:
parent
f97a3e853e
commit
ef7b001626
3 changed files with 15 additions and 14 deletions
14
.travis.yml
14
.travis.yml
|
@ -50,9 +50,6 @@ matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- go: tip
|
- go: tip
|
||||||
include:
|
include:
|
||||||
- go: 1.9.x
|
|
||||||
script:
|
|
||||||
- make quicktest
|
|
||||||
- go: 1.10.x
|
- go: 1.10.x
|
||||||
script:
|
script:
|
||||||
- make quicktest
|
- make quicktest
|
||||||
|
@ -60,6 +57,9 @@ matrix:
|
||||||
script:
|
script:
|
||||||
- make quicktest
|
- make quicktest
|
||||||
- go: 1.12.x
|
- go: 1.12.x
|
||||||
|
script:
|
||||||
|
- make quicktest
|
||||||
|
- go: 1.13.x
|
||||||
name: Linux
|
name: Linux
|
||||||
env:
|
env:
|
||||||
- GOTAGS=cmount
|
- GOTAGS=cmount
|
||||||
|
@ -69,7 +69,7 @@ matrix:
|
||||||
- make build_dep
|
- make build_dep
|
||||||
- make check
|
- make check
|
||||||
- make quicktest
|
- make quicktest
|
||||||
- go: 1.12.x
|
- go: 1.13.x
|
||||||
name: Go Modules / Race
|
name: Go Modules / Race
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=on
|
- GO111MODULE=on
|
||||||
|
@ -77,7 +77,7 @@ matrix:
|
||||||
script:
|
script:
|
||||||
- make quicktest
|
- make quicktest
|
||||||
- make racequicktest
|
- make racequicktest
|
||||||
- go: 1.12.x
|
- go: 1.13.x
|
||||||
name: Other OS
|
name: Other OS
|
||||||
env:
|
env:
|
||||||
- DEPLOY=true
|
- DEPLOY=true
|
||||||
|
@ -85,7 +85,7 @@ matrix:
|
||||||
script:
|
script:
|
||||||
- make
|
- make
|
||||||
- make compile_all
|
- make compile_all
|
||||||
- go: 1.12.x
|
- go: 1.13.x
|
||||||
name: macOS
|
name: macOS
|
||||||
os: osx
|
os: osx
|
||||||
env:
|
env:
|
||||||
|
@ -101,7 +101,7 @@ matrix:
|
||||||
- make racequicktest
|
- make racequicktest
|
||||||
# - os: windows
|
# - os: windows
|
||||||
# name: Windows
|
# name: Windows
|
||||||
# go: 1.12.x
|
# go: 1.13.x
|
||||||
# env:
|
# env:
|
||||||
# - GOTAGS=cmount
|
# - GOTAGS=cmount
|
||||||
# - CPATH='C:\Program Files (x86)\WinFsp\inc\fuse'
|
# - CPATH='C:\Program Files (x86)\WinFsp\inc\fuse'
|
||||||
|
|
|
@ -73,12 +73,6 @@ strategy:
|
||||||
GOPROXY: https://proxy.golang.org
|
GOPROXY: https://proxy.golang.org
|
||||||
MAKE_QUICKTEST: true
|
MAKE_QUICKTEST: true
|
||||||
MAKE_RACEQUICKTEST: true
|
MAKE_RACEQUICKTEST: true
|
||||||
go1.9:
|
|
||||||
imageName: ubuntu-16.04
|
|
||||||
gorootDir: /usr/local
|
|
||||||
GOCACHE: '' # build caching only came in go1.10
|
|
||||||
GO_VERSION: go1.9.7
|
|
||||||
MAKE_QUICKTEST: true
|
|
||||||
go1.10:
|
go1.10:
|
||||||
imageName: ubuntu-16.04
|
imageName: ubuntu-16.04
|
||||||
gorootDir: /usr/local
|
gorootDir: /usr/local
|
||||||
|
@ -87,7 +81,12 @@ strategy:
|
||||||
go1.11:
|
go1.11:
|
||||||
imageName: ubuntu-16.04
|
imageName: ubuntu-16.04
|
||||||
gorootDir: /usr/local
|
gorootDir: /usr/local
|
||||||
GO_VERSION: go1.11.12
|
GO_VERSION: go1.11.13
|
||||||
|
MAKE_QUICKTEST: true
|
||||||
|
go1.12:
|
||||||
|
imageName: ubuntu-16.04
|
||||||
|
gorootDir: /usr/local
|
||||||
|
GO_VERSION: go1.12.9
|
||||||
MAKE_QUICKTEST: true
|
MAKE_QUICKTEST: true
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -67,3 +67,5 @@ require (
|
||||||
google.golang.org/grpc v1.23.0 // indirect
|
google.golang.org/grpc v1.23.0 // indirect
|
||||||
gopkg.in/yaml.v2 v2.2.2
|
gopkg.in/yaml.v2 v2.2.2
|
||||||
)
|
)
|
||||||
|
|
||||||
|
go 1.13
|
||||||
|
|
Loading…
Reference in a new issue