Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Perft integration #70

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
added a script to run perf tests on all supported Ruby versions
  • Loading branch information
dtao committed May 3, 2013
commit 7a4eadd40126300bfdc5b4d75967c9a291b281c3
21 changes: 21 additions & 0 deletions run_perf_tests_all_ruby_versions.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"

rvm use 1.8.7@safe_yaml
bundle exec rake perf

rvm use 1.9.2@safe_yaml
YAMLER=syck bundle exec rake perf[true]

rvm use 1.9.3@safe_yaml
YAMLER=syck bundle exec rake perf[true]

rvm use 1.9.2@safe_yaml
YAMLER=psych bundle exec rake perf[true]

rvm use 1.9.3@safe_yaml
YAMLER=psych bundle exec rake perf[true]

rvm use 2.0.0@safe_yaml
YAMLER=psych bundle exec rake perf[true]