Skip to content

Commit

Permalink
Run benchmark only on CRuby
Browse files Browse the repository at this point in the history
  • Loading branch information
yujinakayama committed Jul 6, 2014
1 parent 956c5d5 commit 2bbfb42
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,10 @@ end
RuboCop::RakeTask.new(:style)

task default: %w(spec style)
task ci: %w(spec style benchmark)

if RUBY_ENGINE == 'ruby'
task ci: %w(spec style benchmark)
else
# Benchmarks on JRuby and Rubinius are not as stable as CRuby...
task ci: %w(spec style)
end

0 comments on commit 2bbfb42

Please sign in to comment.