From 592d962406f09b8e6b677761435207cd5fcdd966 Mon Sep 17 00:00:00 2001 From: Aditya Mukerjee Date: Sun, 11 Feb 2018 23:53:30 -0500 Subject: [PATCH] Disable Travis Go 1.6 tests on OS X --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3bd73aa..55a8da7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,12 +21,16 @@ before_script: - git diff-index --cached --exit-code HEAD go: - - 1.6 - 1.7 - 1.8 - 1.9 - tip +matrix: + include: + - os: linux + go: 1.6 + script: - echo $TRAVIS_GO_VERSION - if [ "$TRAVIS_GO_VERSION" == "1.6" ] || [ "$TRAVIS_GO_VERSION" == "1.7" ] || [ "$TRAVIS_GO_VERSION" == "1.8" ]; then go list ./... | grep -v vendor | xargs go test -race -v -timeout 60s; else go test -race -v -timeout 60s ./...; fi