1
0
Fork 0
mirror of https://github.com/thoughtbot/factory_bot.git synced 2022-11-09 11:43:51 -05:00
thoughtbot--factory_bot/.travis.yml
Oli Peate 9f1b32e071 Remove jruby from TravisCI build matrix
The build is consistently failing with jruby-19 / 3.2.gemfile because
bundler cannot install activesupport.
2017-07-07 10:50:43 +01:00

38 lines
675 B
YAML

rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
- rbx-2
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
script: "bundle exec rake"
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
matrix:
fast_finish: true
exclude:
- rvm: 1.9.3
gemfile: gemfiles/5.0.gemfile
- rvm: 2.0.0
gemfile: gemfiles/5.0.gemfile
- rvm: 2.1.9
gemfile: gemfiles/5.0.gemfile
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branches:
only:
- master
sudo: false
cache: bundler