From 065ee6091a5bbf99cf089579f72d19356f30f826 Mon Sep 17 00:00:00 2001 From: "James O. D. Hunt" Date: Tue, 23 Oct 2018 16:43:51 +0100 Subject: [PATCH] CI: Pin Travis golang version Travis appears to be providing a version of golang that is too old for https://mvdan.cc/xurls/cmd/xurls, which is used by the CI scripts in the tests repo. See: - https://github.com/kata-containers/runtime/pull/744 - https://github.com/kata-containers/tests/pull/843#issuecomment-432297737 Fixes #281. Signed-off-by: James O. D. Hunt --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 51fb1735..79b73f89 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,9 @@ dist: trusty language: bash +go: + - "1.10.x" + before_script: - ".ci/setup.sh"