Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci.sh
diff options
context:
space:
mode:
authorSarah Mei <sarahmei@gmail.com>2010-10-12 09:37:58 +0400
committerSarah Mei <sarahmei@gmail.com>2010-10-12 09:37:58 +0400
commit546401cbecb81bd151a2f874833b717c3b4d6ef0 (patch)
treeb8ac455dec7b05a35252c458a3d3ad75a87f65ea /ci.sh
parente3e76ec3e0f1d2d9cf45c14a962f94d153b7f93b (diff)
Gemfile.lock is different in 1.9.2, so we need to remove it after running specs so the next pull succeeds.
Diffstat (limited to 'ci.sh')
-rwxr-xr-xci.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/ci.sh b/ci.sh
index 63bab3bcf..e631517e1 100755
--- a/ci.sh
+++ b/ci.sh
@@ -4,10 +4,17 @@ 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 &&
+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 \ No newline at end of file
+source /usr/local/rvm/scripts/rvm &&
+rvm use ruby-1.9.2-p0 &&
+bundle install &&
+bundle exec rake ci &&
+rm Gemfile.lock \ No newline at end of file