Skip to content
This repository was archived by the owner on Sep 24, 2019. It is now read-only.

Commit f2adc2b

Browse files
(MODULES-6339) Remove bundler update from before_install
Prior to this commit the travis.yml template includes a before_install step which upgrades bundler. This was done to solve for an issue where Travis included the default version of bundler for each ruby version in the matrix. Now, however, Travis seems to include the latest compatible version of bundler - at this time, `1.16.0` - and we are upgrading to `1.16.1` which has an incompatibility issue on Travis at this time. This commit removes the now-unneccessary update step and puts the heavy lifting for maintaining a compatible matrix back onto Travis. A downside to this is that we may have future breaks caused by Travis mismanaging their images, but this is a risk we already have. An alternative is to pin to a version ourselves and manage the pinned version over time.
1 parent cd884db commit f2adc2b

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

moduleroot/.travis.yml.erb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ sudo: false
44
language: ruby
55
cache: bundler
66
script: <%= @configs['script'] %>
7-
#Inserting below due to the following issue: https://github.com/travis-ci/travis-ci/issues/3531#issuecomment-88311203
8-
before_install:
9-
- gem update bundler
107
<% if @configs['env'] -%>
118
env:
129
<% if @configs['env']['global'] -%>

0 commit comments

Comments
 (0)