From fe1c64454e8fc696a6cf81fdc4430ca861466dd6 Mon Sep 17 00:00:00 2001 From: Bryan McLellan Date: Wed, 22 Nov 2017 15:26:51 -0500 Subject: Switch from the Travis container to the VM If `sudo` is `false`, then Travis CI will use a container for testing. If `sudo` is `required, then it will use a GCE VM. We've recently been seeing permission errors that appeared related to the Travis CI infrastructure. Switching to the VM resolves those errors. The downside is that it takes 50s instead of 5s to start up the tester, but given that our tests take 18 minutes that is okay. https://docs.travis-ci.com/user/reference/trusty/ Signed-off-by: Bryan McLellan --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c4562a808e..8e52f38611 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: ruby -sudo: false +sudo: required cache: bundler dist: trusty -- cgit v1.2.1