1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

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.
This commit is contained in:
Matt Brictson 2016-06-30 15:33:18 -05:00
parent fd08a918be
commit 76954769e9

View file

@ -4,7 +4,11 @@ rvm:
- 2.2
- 2.1
- 2.0
- rbx-2
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