Skip to content
This repository has been archived by the owner on Oct 4, 2018. It is now read-only.

Commit

Permalink
Remove existing Bundler 1.13.0 installs on Travis (fixes #8556)
Browse files Browse the repository at this point in the history
Dependency resolution in Bundler 1.13 breaks when using engine_cart, which we use
in Krikri to build a test application for the engine. The changes to the Travis
build are modified from the workaround specified in cbeer/engine_cart#64, but
the better long term fix would be to upgrade engine_cart to v1.0.1 (see #8557).
  • Loading branch information
Mark A. Matienzo committed Sep 12, 2016
1 parent 6b1fe40 commit d54a833
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
before_install: 'gem install bundler -v "~> 1.11.0"'
before_install:
# TODO: fix https://issues.dp.la/issues/8556
# Workaround modified from https://github.com/cbeer/engine_cart/issues/64
- if [ $TRAVIS_RUBY_VERSION != "2.1.3" ]; then gem uninstall -i "/home/travis/.rvm/gems/ruby-$TRAVIS_RUBY_VERSION@global" bundler -v 1.13.0; fi
- gem install bundler -v "~> 1.12.0"
matrix:
allow_failures:
- rvm: 2.1.6
Expand Down

0 comments on commit d54a833

Please sign in to comment.