From 4a974c6db1168453a6df8d2e1a7b8ebcbca60031 Mon Sep 17 00:00:00 2001 From: Akihiko Odaki Date: Thu, 25 Jan 2018 12:23:09 +0900 Subject: [PATCH 1/2] Do not require sudo on Travis CI (#6356) The issue which the workaround for is now addressed: https://github.com/travis-ci/travis-ci/issues/7941#issuecomment-310667894 > We've pushed out new stable trusty images to production with a patch. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 496315558..f27be2a39 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ cache: - public/packs-test - tmp/cache/babel-loader dist: trusty -sudo: required +sudo: false branches: only: - master From 7e07e61a302815c8e141d02756280213e7b6f391 Mon Sep 17 00:00:00 2001 From: Akihiko Odaki Date: Thu, 25 Jan 2018 12:23:29 +0900 Subject: [PATCH 2/2] Do not manually update system RubyGems (#6355) Travis CI ships compatible system RubyGems now: https://github.com/travis-ci/travis-ci/issues/8969#issuecomment-360288970 > I have repackaged the 2.5.0 archive for Linux to include RubyGems 2.7.4, > which should have the fix for this issue. Please restart the affected > jobs, and let us know how they go for you. --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f27be2a39..35fc49dde 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,6 @@ services: - redis-server install: - - gem update --system - nvm install - bundle install --path=vendor/bundle --without development production --retry=3 --jobs=16 - yarn install