From 0fa0730b08980c6d78f91fc6c6a000193c59d39e Mon Sep 17 00:00:00 2001 From: Henry Turner Date: Thu, 23 Aug 2018 15:52:42 +0100 Subject: [PATCH] Pin bundler to 1.16.2 for travis run 1.16.3 (and apparently 1.16.4 - the latest) seem to be suffering https://github.com/bundler/bundler/issues/6629 --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9fccb24e..5a754e26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,9 @@ branches: - "/^prototypes\\/.*$/" addons: postgresql: 9.4 -before_script: +before_install: - gem update --system -- gem update bundler -- "./bin/rake db:setup RAILS_ENV=test" +- gem install bundler -v=1.16.2 +before_script: - npm install +- bundle exec rake db:setup RAILS_ENV=test