From 803b371f3d10df20268ef8a9cdf08ccbe5279be5 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Fri, 23 Feb 2018 17:47:56 -0300 Subject: [PATCH 1/2] travis: Use quoted versions to allow 1.10 use The gimme parses 1.10 as float, so asks 1.1 to be used instead. The workaround for this is to use quoted versions so it is parsed as text. Refs: https://github.com/travis-ci/travis-ci/issues/9247 Signed-off-by: Otavio Salvador --- .travis.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 288ea916..f639b37d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ language: go +# https://github.com/travis-ci/travis-ci/issues/9247 go: - - 1.7 - - 1.8 - - 1.9 - - master + - "1.7" + - "1.8" + - "1.9" + - "master" go_import_path: github.com/updatehub/updatehub From 2f105d90bd4e7ef88a8f3d5d98ed377b610097a2 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Fri, 23 Feb 2018 17:44:27 -0300 Subject: [PATCH 2/2] travis: Add Go 1.10 to the test matrix Signed-off-by: Otavio Salvador --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index f639b37d..e3dfbc4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ go: - "1.7" - "1.8" - "1.9" + - "1.10" - "master" go_import_path: github.com/updatehub/updatehub