Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Simplify CI test matrix, Add windows #2249

Merged
merged 10 commits into from
Nov 16, 2018
Next Next commit
Simplify CI test matrix, Add windows
  • Loading branch information
jasdel committed Nov 2, 2018
commit 1e4f9f55283655662c7649051300ac41dbff087b
56 changes: 23 additions & 33 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,37 @@
language: go

sudo: required

os:
- linux
- osx
- windows

go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- tip

matrix:
allow_failures:
- go: tip
include:
- os: linux
sudo: required
go: 1.5.x
# Use Go 1.5's vendoring experiment for 1.5 tests.
env: GO15VENDOREXPERIMENT=1
- os: linux
sudo: required
go: 1.6.x
- os: linux
sudo: required
go: 1.7.x
- os: linux
sudo: required
go: 1.8.x
- os: linux
sudo: required
go: 1.9.x
- os: linux
sudo: required
go: 1.10.x
- os: linux
sudo: required
go: 1.11.x
- os: linux
sudo: required
go: tip
- os: osx
go: 1.7.x
- os: osx
go: 1.8.x
- os: osx
go: 1.9.x
- os: osx
go: 1.10.x
- os: osx
go: 1.11.x
- os: osx
go: tip
go: 1.5.x
# Use Go 1.5's vendoring experiment for 1.5 tests.
env: GO15VENDOREXPERIMENT=1
- os: windows
go: 1.5.x
# Use Go 1.5's vendoring experiment for 1.5 tests.
env: GO15VENDOREXPERIMENT=1

script:
- if [ $TRAVIS_GO_VERSION == "tip" ] ||
Expand Down