Skip to content

Instantly share code, notes, and snippets.

@sawanoboly
Last active December 31, 2015 17:29
Show Gist options
  • Save sawanoboly/8020304 to your computer and use it in GitHub Desktop.
Save sawanoboly/8020304 to your computer and use it in GitHub Desktop.
Circle CIで複数Rubyバージョンを平行してテストする ref: http://qiita.com/sawanoboly/items/bd7c12258fe9f29646d5
rvm:
- 2.0.0
- 1.9.3
dependencies:
pre:
- case $CIRCLE_NODE_INDEX in 0) rvm use 2.0.0 --default ;; 1) rvm use 1.9.3 --default ;; esac
test:
override:
- ruby -v ; bundle exec rspec: {parallel: true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment