Merge pull request #4331 from simonpasquier/fix-travisci
travis: remove testing with go 1.x
This commit is contained in:
commit
1f8c40943f
|
@ -3,6 +3,8 @@ version: 2
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
# Whenever the Go version is updated here, .travis.yml should also be
|
||||||
|
# updated.
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/golang:1.10
|
- image: circleci/golang:1.10
|
||||||
working_directory: /go/src/github.com/prometheus/prometheus
|
working_directory: /go/src/github.com/prometheus/prometheus
|
||||||
|
|
|
@ -2,9 +2,10 @@ sudo: false
|
||||||
|
|
||||||
language: go
|
language: go
|
||||||
|
|
||||||
|
# Whenever the Go version is updated here, .circleci/config.yml should also be
|
||||||
|
# updated.
|
||||||
go:
|
go:
|
||||||
- 1.10.x
|
- 1.10.x
|
||||||
- 1.x
|
|
||||||
|
|
||||||
go_import_path: github.com/prometheus/prometheus
|
go_import_path: github.com/prometheus/prometheus
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue