bash script to run specs against multiple versions of Ruby on CI
This commit is contained in:
parent
b370f4c560
commit
2d57b5dc9a
1 changed files with 13 additions and 0 deletions
13
ci.sh
Normal file
13
ci.sh
Normal 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
|
||||
Loading…
Reference in a new issue