Last active
December 31, 2015 17:29
-
-
Save sawanoboly/8020304 to your computer and use it in GitHub Desktop.
Circle CIで複数Rubyバージョンを平行してテストする ref: http://qiita.com/sawanoboly/items/bd7c12258fe9f29646d5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rvm: | |
- 2.0.0 | |
- 1.9.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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