1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/.travis.yml
Matt Brictson 76954769e9 Skip RuboCop in Travis for Rubinius
For some reason Rubinius seg faults sometimes when running RuboCop on
Travis. Rather than have periodically failing builds, just disable it.
We still get adequate coverage because RuboCop results shouldn't be
different for rbx anyway.
2016-06-30 15:33:18 -05:00

18 lines
326 B
YAML

language: ruby
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0
matrix:
include:
# Run specs on Rubinius, but not RuboCop, since it seg faults
- rvm: rbx-2
script: bundle exec rake spec
script: bundle exec rake spec rubocop
install: bundle install --jobs=1
cache: bundler
branches:
except:
- legacy-v2
sudo: false