From ad8c1c845a6e54f98248cf138f8140367f0dfab9 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Thu, 3 Jan 2019 09:39:31 -0800 Subject: [PATCH] Install the same bundler in travis that we use in the omnibus build 2.0 requires rubygems 3.0 and we want rubygems to match what we build in the omnibus package. Signed-off-by: Tim Smith --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 70340967c..7bdcd4347 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ addons: # Early warning system to catch if Rubygems breaks something before_install: - gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2) - - gem install bundler # https://github.com/travis-ci/travis-ci/issues/8969 + - gem install bundler --version $(grep bundler omnibus_overrides.rb | cut -d'"' -f2) # https://github.com/travis-ci/travis-ci/issues/8969 - gem --version - rm -f .bundle/config