diff --git a/ci-19.sh b/ci-19.sh deleted file mode 100755 index f876ec1d3..000000000 --- a/ci-19.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -echo "*********************************************************************************" && -echo "* ruby 1.9.2-p0 build *" && -echo "* Runs tests we can't run on travis because their VMs are a bit puny. *" && -echo "*********************************************************************************" && -echo "" && -rm -f Gemfile.lock && -source /usr/local/rvm/scripts/rvm && -rvm use ruby-1.9.2-p0@diaspora --create && -bundle install && -CI=true bundle exec rake ci:hard_things diff --git a/ci.sh b/ci.sh deleted file mode 100755 index 645bc9d4d..000000000 --- a/ci.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -echo "*********************************************************************************" && -echo "* ruby 1.8.7 REE build *" && -echo "* Runs tests we can't run on travis because their VMs are a bit puny. *" && -echo "*********************************************************************************" && -echo "" && -rm -f Gemfile.lock && -source /usr/local/rvm/scripts/rvm && -rvm use ree@diaspora --create && -export RUBY_HEAP_MIN_SLOTS=1000000 && -export RUBY_HEAP_SLOTS_INCREMENT=1000000 && -export RUBY_HEAP_SLOTS_GROWTH_FACTOR=1 && -export RUBY_GC_MALLOC_LIMIT=1000000000 && -export RUBY_HEAP_FREE_MIN=500000 && -rm -rf /usr/local/rvm/gems/ree-1.8.7-2010.02@diaspora/cache && -rm -rf /usr/local/rvm/gems/ree-1.8.7-2010.02@global/cache && -rm -rf /usr/local/rvm/gems/ree-1.8.7-2010.02/cache && -bundle install && -CI=true bundle exec rake ci:hard_things