From 558dd7c31ef70c03469672d0735e171687586c47 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 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 51fb1735..895b3879 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,10 @@ sudo: required dist: trusty -language: bash +language: go + +go: + - "1.10.x" before_script: - ".ci/setup.sh"