ci.sh uses @diaspora gemset and forces removal of Gemfile.lock

This commit is contained in:
Sarah Mei 2010-10-20 22:37:50 -07:00
parent d98b551464
commit 2bab775973
2 changed files with 5 additions and 5 deletions

8
ci.sh
View file

@ -4,9 +4,9 @@ echo "**************************************************************************
echo "* ruby 1.8.7-p249 build *" &&
echo "*************************************************************************************************" &&
echo "" &&
rm Gemfile.lock &&
rm -f Gemfile.lock &&
source /usr/local/rvm/scripts/rvm &&
rvm use ruby-1.8.7-p249 &&
rvm use ruby-1.8.7-p249@diaspora &&
bundle install &&
bundle exec rake cruise &&
echo "" &&
@ -14,8 +14,8 @@ echo "**************************************************************************
echo "* ruby 1.9.2-p0 build *" &&
echo "*************************************************************************************************" &&
echo "" &&
rm Gemfile.lock &&
rm -f Gemfile.lock &&
source /usr/local/rvm/scripts/rvm &&
rvm use ruby-1.9.2-p0 &&
rvm use ruby-1.9.2-p0@diaspora &&
bundle install &&
bundle exec rake cruise

View file

@ -1,5 +1,5 @@
require 'fileutils'
Project.configure do |project|
project.build_command = 'ci.sh'
project.build_command = './ci.sh'
end