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:
parent
fd08a918be
commit
76954769e9
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue