From 76954769e91ed0d10c47fd9a78842cf84e7cdad2 Mon Sep 17 00:00:00 2001 From: Matt Brictson Date: Thu, 30 Jun 2016 15:33:18 -0500 Subject: [PATCH] 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. --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 96ac3dc2..a082ea3d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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