From 892c664cb58719c4431f3dafbbe734c4b99bec14 Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Wed, 28 Nov 2018 00:11:01 -0500 Subject: [PATCH] Remove deprecated `sudo: false`. Per https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration and https://blog.travis-ci.com/2018-10-04-combining-linux-infrastructures, Travis CI is eliminating its container-based infrastructure and deprecating the `sudo` keyword. Also add 7.1 to build matrix. --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index f14c060..041eead 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,10 @@ language: c -# To use Travis CI's newer container infrastructure, use the following -# line. (Also be sure RACKET_DIR is set to somewhere like ~/racket -# that doesn't require sudo.) -sudo: false - env: global: # Supply a global RACKET_DIR environment variable. This is where # Racket will be installed. A good idea is to use ~/racket because - # that doesn't require sudo to install and is therefore compatible - # with Travis CI's newer container infrastructure. + # that doesn't require sudo to install. - RACKET_DIR=~/racket matrix: # Supply at least one RACKET_VERSION environment variable. This is @@ -36,6 +30,7 @@ env: - RACKET_VERSION=6.11 - RACKET_VERSION=6.12 - RACKET_VERSION=7.0 + - RACKET_VERSION=7.1 - RACKET_VERSION=HEAD - RACKET_VERSION=HEADCS - RACKET_VERSION=RELEASE