c4f5040d3d
* Enable compilation with Go 1.10 on Travis There a minor compilation differences between Go 1.10 and 1.x which is currently Go 1.11 beta.x such as new compilation warnings. It will show more obviously the errors in Travus when error is linked for instance to a new compilation warning * Compile only for Go 1.10 as requested by @pearkes * Switch to golang 1.11 as requested by @pearkes
22 lines
300 B
YAML
22 lines
300 B
YAML
language: go
|
|
|
|
go:
|
|
- "1.11"
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- f-envoy
|
|
|
|
matrix:
|
|
include:
|
|
- env: GOTEST_PKGS="./api"
|
|
- env: GOTEST_PKGS="./agent"
|
|
- env: GOTEST_PKGS="./agent/consul"
|
|
- env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul"
|
|
|
|
script:
|
|
- make test-ci
|
|
|
|
sudo: false
|