From bd7de80d98ce145b43971aeeba0ecef3764487a2 Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Wed, 28 Nov 2018 00:32:02 -0500 Subject: [PATCH] raco pkg new: Remove deprecated `sudo: false` from .travis.yml Travis is eliminating its container-based infrastructure and deprecating the `sudo` keyword. This commit also updates the example build matrix to use more recent Racket versions. Corresponds to https://github.com/greghendershott/travis-racket/pull/29 --- racket/collects/pkg/private/new.rkt | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/racket/collects/pkg/private/new.rkt b/racket/collects/pkg/private/new.rkt index 5e2a677fdf..ad99b75701 100644 --- a/racket/collects/pkg/private/new.rkt +++ b/racket/collects/pkg/private/new.rkt @@ -98,17 +98,13 @@ EOS (lambda () (expand/display #<> before_script: @@ -146,7 +142,7 @@ script: after_success: - raco setup --check-pkg-deps --pkgs <> - - raco pkg install --deps search-auto cover cover-coveralls + - raco pkg install --auto cover cover-coveralls - raco cover -b -f coveralls -d $TRAVIS_BUILD_DIR/coverage . EOS