From 132876b3ac8fbcc6bc32ca39bd159352a3dd6a8c Mon Sep 17 00:00:00 2001 From: Matthew Hooker Date: Fri, 24 Aug 2018 16:11:54 -0700 Subject: [PATCH] remove 1.10.x from travis matrix go changed formatting behavior between .10 and .11 One option is to download a specific version of gofmt but rather than do that we are removing .10 tests. Packer only supports the latest version of go, so it's unnecessary to test on prior version. Previously we tested on .9 and .10 because go changed the way tar encoding worked. We wanted to support .9 so users would have a b/c option if needed. As we move forward that's become unnecessary. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fbb7968f0..98606817b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ sudo: false language: go go: - - 1.10.x - 1.11.x - master