docile/.travis.yml

33 lines
761 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
2016-12-27 19:30:06 +00:00
- 2.3.3 # 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
2016-12-27 19:45:22 +00:00
- jruby # this alias tracks JRuby 9k stable version
- jruby-head
2012-10-28 12:26:10 +00:00
- jruby-19mode
- jruby-18mode
- rbx-2
- rbx
- rbx-head
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
- rvm: rbx-2 # until Travis fixes Rubinius again
- rvm: rbx
- rvm: rbx-head
fast_finish: true