Increase CI benchmark iteration

This commit is contained in:
Takashi Kokubun 2015-03-30 16:16:54 +09:00
parent 3462f32d04
commit 78ae610212
2 changed files with 6 additions and 6 deletions

View File

@ -49,10 +49,11 @@ class Benchmarks
def run_hamlit; #{Hamlit::Engine.new.call @haml_code}; end
}
bench('hamlit', Hamlit::VERSION) { context.run_hamlit }
bench('erubis', Erubis::VERSION) { context.run_erubis }
bench('faml', Faml::VERSION) { context.run_faml }
bench('slim', Slim::VERSION) { context.run_slim_ugly }
bench('hamlit', Hamlit::VERSION) { context.run_hamlit }
bench('erubis', Erubis::VERSION) { context.run_erubis }
bench('slim', Slim::VERSION) { context.run_slim_ugly }
bench('faml', Faml::VERSION) { context.run_faml }
bench('haml', Haml::VERSION) { context.run_haml_ugly }
if ENV['ALL']
erb_version = ERB.version.match(/\[([^ ]+)/)[1]
@ -60,7 +61,6 @@ class Benchmarks
bench('fast erubis', Erubis::VERSION) { context.run_fast_erubis }
bench('temple erb', Temple::VERSION) { context.run_temple_erb }
bench('erb', erb_version) { context.run_erb }
bench('haml', Haml::VERSION) { context.run_haml_ugly }
end
end

View File

@ -32,4 +32,4 @@ build:
- script:
name: run benchmarks
code: ALL=true bundle exec rake bench
code: TIME=10 bundle exec rake bench