docile/.travis.yml

27 lines
598 B
YAML
Raw Normal View History

# Use container-based infrastructure
sudo: false
2012-10-28 12:26:10 +00:00
language: ruby
# Travis bug, see https://github.com/bundler/bundler/pull/3559
before_install: gem update bundler
2014-06-15 18:08:16 +00:00
cache: bundler
2012-10-28 12:26:10 +00:00
rvm:
- ruby-head
- 2.3.0 # Travis lacking 2.3 alias, see https://github.com/travis-ci/travis-ci/issues/5361
2015-06-24 19:54:11 +00:00
- 2.2
- 2.1
- 2.0.0
2012-10-28 12:26:10 +00:00
- 1.9.3
- 1.9.2
- 1.8.7
- ree
- jruby-head
2012-10-28 12:26:10 +00:00
- jruby-19mode
- jruby-18mode
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-18mode # until we figure out failure in `bundle exec`, which is not our problem
fast_finish: true