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/config
diff options
context:
space:
mode:
authorSarah Mei <sarahmei@gmail.com>2011-09-04 05:46:20 +0400
committerSarah Mei <sarahmei@gmail.com>2011-09-04 05:46:20 +0400
commit60301d5a93f56381056179081c929029b778afe6 (patch)
tree48c16e235b87547af3dc3c9ade8b2de80eeff3dd /config
parent66836e53d2cd735f32a67c8e560ac142f0dbe582 (diff)
More debug output in travis. Also, use --without development production in the rebundle, same as in the original bundle.
Diffstat (limited to 'config')
-rwxr-xr-xconfig/ci/before-travis.sh4
1 files changed, 3 insertions, 1 deletions
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