From 60301d5a93f56381056179081c929029b778afe6 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Sat, 3 Sep 2011 18:46:20 -0700 Subject: [PATCH] More debug output in travis. Also, use --without development production in the rebundle, same as in the original bundle. --- config/ci/before-travis.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/ci/before-travis.sh b/config/ci/before-travis.sh index 71a476f0d..e8e9b2a22 100755 --- a/config/ci/before-travis.sh +++ b/config/ci/before-travis.sh @@ -1,6 +1,6 @@ # Remove Gemfile.lock and rebundle on Ruby 1.9 ruby -e "system('rm Gemfile.lock') if RUBY_VERSION.include?('1.9')" -ruby -e "system('bundle install') if RUBY_VERSION.include?('1.9')" +ruby -e "system('bundle install --without development production') if RUBY_VERSION.include?('1.9')" # adjust GC settings for REE export RUBY_HEAP_MIN_SLOTS=1000000 @@ -19,5 +19,7 @@ sass --update public/stylesheets/sass/:public/stylesheets/ # Set up database cp config/database.yml.example config/database.yml +which rake +rake --version rake db:create --trace rake db:schema:load --trace