active_model_serializers/.travis.yml
Benjamin Fleischer 14a06d96c4 Only capture stderr on Ruby 2.1 on CI
Always show warnings in tests
2015-11-09 00:35:02 -06:00

37 lines
594 B
YAML

language: ruby
sudo: false
cache:
bundler: true
rvm:
- 1.9.3
- 2.0.0
- 2.2
- ruby-head
- rbx-2
install:
- bundle install --retry=3
script:
- env CAPTURE_STDERR=${CAPTURE_STDERR:-false} bundle exec rake ci
env:
- "RAILS_VERSION=4.0"
- "RAILS_VERSION=4.1"
- "RAILS_VERSION=4.2"
- "RAILS_VERSION=master"
matrix:
include:
- rvm: 2.1
env: CAPTURE_STDERR=true
- rvm: jruby-19mode
env: JRUBY_OPTS='--server -Xcompile.invokedynamic=false -Xcli.debug=true --debug'
allow_failures:
- rvm: ruby-head
- env: "RAILS_VERSION=master"
fast_finish: true