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
Prev Previous commit
Next Next commit
exclude go 1.6.4 osx test
  • Loading branch information
jasdel committed Nov 2, 2018
commit 4855dd3b5237e0c482e4b2b0f206b8702118f664
12 changes: 10 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,15 @@ go:
matrix:
allow_failures:
- go: tip
exclude:
# OSX 1.6.4 is not present in travis.
# https://github.com/travis-ci/travis-ci/issues/10309
- os: osx
go: 1.6.x
include:
# OSX 1.6.4 is not present in travis.
- os: osx
go: 1.6.3
- os: linux
go: 1.5.x
# Use Go 1.5's vendoring experiment for 1.5 tests.
Expand All @@ -37,9 +45,9 @@ script:
- if [ $TRAVIS_GO_VERSION == "tip" ] ||
[ $TRAVIS_GO_VERSION == "1.11.x" ] ||
[ $TRAVIS_GO_VERSION == "1.10.x" ]; then
make ci-test;
make ci-test;
else
make unit-old-go-race-cover;
make unit-old-go-race-cover;
fi

branches:
Expand Down