bash script to run specs against multiple versions of Ruby on CI

This commit is contained in:
Sarah Mei 2010-10-11 22:24:48 -07:00
parent b370f4c560
commit 2d57b5dc9a

13
ci.sh Normal file
View file

@ -0,0 +1,13 @@
#!/bin/bash
echo "*************************************************************************************************" &&
echo "* ruby 1.8.7-p249 build *" &&
echo "*************************************************************************************************" &&
echo "" &&
source /usr/local/rvm/scripts/rvm && rvm use ruby-1.8.7-p249 && bundle install && bundle exec rake ci &&
echo "" &&
echo "*************************************************************************************************" &&
echo "* ruby 1.9.2-p0 build *" &&
echo "*************************************************************************************************" &&
echo "" &&
source /usr/local/rvm/scripts/rvm && rvm use ruby-1.9.2-p0 && bundle install && bundle exec rake ci