From 2f832eb65798b264f0b084c21a3352aa9fa5b485 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 7 Jul 2014 10:04:23 -0600 Subject: [PATCH] Update Travis to use pretty Docker-based workers These start up much faster and the only caveat is that we can't use "sudo" (which we don't currently use anyhow). Also, I've updated the Go version here to match what's in the Dockerfile. Docker-DCO-1.1-Signed-off-by: Andrew Page (github: tianon) Upstream-commit: 3e2ad6ffee68be7f3462fd1311408c7880cd8d88 Component: engine --- components/engine/.travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/components/engine/.travis.yml b/components/engine/.travis.yml index ae03d6cde5..1e8d41184c 100644 --- a/components/engine/.travis.yml +++ b/components/engine/.travis.yml @@ -3,7 +3,12 @@ language: go -go: 1.2 +# This should match the version in the Dockerfile. +go: 1.2.1 + +# Let us have pretty experimental Docker-based Travis workers. +# (These spin up much faster than the VM-based ones.) +sudo: false # Disable the normal go build. install: true