From f738270caf65e63c420dbf2d5906d00e13b1a5f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 17 Mar 2018 19:54:42 +0000 Subject: [PATCH] Fix and update Travis build config - Fix building for go1.10, see travis-ci/travis-ci#9247. - Add a ".x" suffix to each version so that Travis selects the latest minor release. - Remove go1.1, which is not available anymore on Travis. --- .travis.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7a4eb54..44fa5dc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,13 +2,12 @@ language: go go: - tip - - 1.10 - - 1.9 - - 1.8 - - 1.7 - - 1.6 - - 1.5 - - 1.4.2 - - 1.3.3 - - 1.2.2 - - 1.1.2 + - "1.10.x" + - "1.9.x" + - "1.8.x" + - "1.7.x" + - "1.6.x" + - "1.5.x" + - "1.4.x" + - "1.3.x" + - "1.2.x"