Skip to content

Commit

Permalink
Update travis: use Go 1.14 for testing (#1100)
Browse files Browse the repository at this point in the history
* Travis-CI: reverse order of Go version

Reverse order of Go versions so the recent ones are tested first.

* Travis-CI: add Go 1.14

* Travis-CI: move 'tip' just below the latest Go release

* Travis-CI: upgrade Go to 1.14 to run tests
  • Loading branch information
dolmen committed May 13, 2020
1 parent 6313f20 commit f378f59
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions .travis.yml
@@ -1,10 +1,14 @@
language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
# Keep the most recent production release at the top
- 1.14.x
# Go development version
- master
# Older production releases
- 1.13.x
- 1.12.x
- 1.11.x
- 1.10.x

before_install:
- go get golang.org/x/tools/cmd/cover
Expand All @@ -23,7 +27,7 @@ jobs:
include:
- env: DB=MYSQL8
dist: trusty
go: 1.10.x
go: 1.14.x
services:
- docker
before_install:
Expand All @@ -42,7 +46,7 @@ jobs:

- env: DB=MYSQL57
dist: trusty
go: 1.10.x
go: 1.14.x
services:
- docker
before_install:
Expand All @@ -61,7 +65,7 @@ jobs:

- env: DB=MARIA55
dist: trusty
go: 1.10.x
go: 1.14.x
services:
- docker
before_install:
Expand All @@ -80,7 +84,7 @@ jobs:

- env: DB=MARIA10_1
dist: trusty
go: 1.10.x
go: 1.14.x
services:
- docker
before_install:
Expand All @@ -104,7 +108,7 @@ jobs:
packages:
- mysql
update: true
go: 1.12.x
go: 1.14.x
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
Expand Down

0 comments on commit f378f59

Please sign in to comment.