From 3a386a2750853734ae14d8d7416e73e2b334071d Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Wed, 5 Sep 2018 17:04:57 -0700 Subject: [PATCH] travis: update golang versions Now when golang 1.11 is out, 1.9 and older versions are no longer supported. More to say, since the archive/tar is from go-1.11, it uses some features from new Go versions (strings.Builder and sync.Map) not supported by anything older than Go 1.10. Signed-off-by: Kir Kolyshkin --- .travis.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index dcce57a..d6474eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,8 @@ language: go go: - tip - - 1.x - - 1.8.x - - 1.7.x - - 1.6.x - - 1.5.x + - 1.11.x + - 1.10.x # let us have pretty, fast Docker-based Travis workers! sudo: false