First try at postgresql support on travis.
This commit is contained in:
parent
d701581379
commit
1cc7026b59
4 changed files with 158 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
bundler_args: "--without development production"
|
||||
|
||||
rvm:
|
||||
- ree
|
||||
- 1.9.2
|
||||
|
|
@ -7,7 +8,9 @@ before_script: "./config/ci/before-travis.sh"
|
|||
|
||||
script: "bundle exec rake travis"
|
||||
|
||||
env: "TRAVIS=true"
|
||||
env:
|
||||
- DB=postgres
|
||||
- DB=mysql
|
||||
|
||||
notifications:
|
||||
disable: true
|
||||
|
|
|
|||
126
config/ci/Gemfile.postgresql
Normal file
126
config/ci/Gemfile.postgresql
Normal file
|
|
@ -0,0 +1,126 @@
|
|||
source 'http://rubygems.org'
|
||||
|
||||
gem 'pg'
|
||||
|
||||
gem 'rails', '3.0.9'
|
||||
gem 'foreigner', '0.9.1'
|
||||
gem 'activerecord-import'
|
||||
|
||||
gem 'bundler', '>= 1.0.0'
|
||||
gem 'chef', '0.9.12', :require => false
|
||||
gem 'ohai', '0.5.8', :require => false #Chef dependency
|
||||
|
||||
gem 'nokogiri'
|
||||
gem 'settingslogic', '2.0.6'
|
||||
|
||||
gem 'foreman'
|
||||
|
||||
gem 'vanna', :git => "git://github.com/MikeSofaer/vanna.git"
|
||||
|
||||
#Security
|
||||
gem 'devise', '~> 1.3.1'
|
||||
gem 'devise_invitable', '0.5.0'
|
||||
|
||||
#Authentication
|
||||
gem 'omniauth', '0.2.6'
|
||||
gem 'twitter', '1.5.0'
|
||||
|
||||
gem 'oauth2-provider', '0.0.16'
|
||||
gem 'jwt', "0.1.3"
|
||||
|
||||
#Web
|
||||
gem 'faraday'
|
||||
gem 'faraday-stack'
|
||||
|
||||
#Views
|
||||
gem 'haml', '3.1.2'
|
||||
gem 'sass', '3.1.4'
|
||||
gem 'will_paginate', '3.0.pre2'
|
||||
|
||||
#Localization
|
||||
gem 'rails-i18n'
|
||||
gem 'i18n-inflector-rails', '~> 1.0'
|
||||
|
||||
#Tags
|
||||
gem 'acts-as-taggable-on', :git => 'git://github.com/diaspora/acts-as-taggable-on.git'
|
||||
|
||||
#Uncatagorized
|
||||
gem 'roxml', :git => 'git://github.com/Empact/roxml.git', :ref => '7ea9a9ffd2338aaef5b0'
|
||||
gem 'addressable', '2.2.4', :require => 'addressable/uri'
|
||||
gem 'json', '1.4.6'
|
||||
gem 'http_accept_language', :git => 'git://github.com/iain/http_accept_language.git', :ref => '0b78aa7849fc90cf9e12'
|
||||
|
||||
gem 'thin', '1.2.11', :require => false
|
||||
gem 'redcarpet', :git => 'git://github.com/tanoku/redcarpet'
|
||||
|
||||
#Websocket
|
||||
gem 'em-websocket', :git => 'git://github.com/igrigorik/em-websocket', :ref => 'e278f5a1c4db60be7485'
|
||||
|
||||
#File uploading
|
||||
gem 'carrierwave', '0.5.2'
|
||||
gem "fog", '0.3.25'
|
||||
gem "excon", "0.2.4"
|
||||
gem 'mini_magick', '3.2'
|
||||
gem 'aws', '2.3.32' # upgrade to 2.4 breaks 1.8 >.<
|
||||
|
||||
|
||||
gem 'fastercsv', '1.5.4', :require => false
|
||||
gem 'jammit', '0.5.4'
|
||||
gem 'rest-client', '1.6.1'
|
||||
gem 'typhoeus'
|
||||
|
||||
#Reporting
|
||||
gem 'hoptoad_notifier'
|
||||
gem 'newrelic_rpm', :require => false
|
||||
|
||||
#Backups
|
||||
gem 'cloudfiles', '1.4.10', :require => false
|
||||
|
||||
#Queue
|
||||
gem 'resque', '1.10.0'
|
||||
gem 'resque-ensure-connected'
|
||||
gem 'SystemTimer', '1.2.1', :platforms => :ruby_18
|
||||
|
||||
group :development do
|
||||
gem 'yard'
|
||||
gem 'capistrano', '2.5.19', :require => false
|
||||
gem 'capistrano-ext', '1.2.1', :require => false
|
||||
gem 'sod', :git => "git://github.com/MikeSofaer/sod.git", :require => false
|
||||
end
|
||||
|
||||
group :test, :development do
|
||||
#gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i
|
||||
#gem 'guard-rspec'
|
||||
gem 'factory_girl_rails', :require => false
|
||||
unless ENV["TRAVIS"]
|
||||
gem 'ruby-debug-base19', '0.11.23' if RUBY_VERSION.include? '1.9.1'
|
||||
gem 'ruby-debug19', :platforms => :ruby_19
|
||||
gem 'ruby-debug', :platforms => :mri_18
|
||||
gem 'linecache', '0.43', :platforms => :mri_18
|
||||
end
|
||||
gem 'launchy'
|
||||
gem 'jasmine', '1.1.0.rc3'
|
||||
end
|
||||
|
||||
group :test do
|
||||
gem 'mysql2', '0.2.6'
|
||||
#gem 'pg'
|
||||
gem 'factory_girl_rails'
|
||||
gem 'fixture_builder', '0.2.2'
|
||||
gem 'selenium-webdriver', '2.4'
|
||||
gem 'capybara', '~> 0.3.9'
|
||||
gem 'cucumber-rails', '0.3.2'
|
||||
gem 'rspec', '>= 2.0.0'
|
||||
gem 'rspec-core', '2.6.0'
|
||||
gem 'rspec-rails', '>= 2.0.0'
|
||||
gem 'rcov', :require => false
|
||||
gem 'database_cleaner', '0.6.0'
|
||||
gem 'webmock', :require => false
|
||||
gem 'mongrel', :require => false, :platforms => :ruby_18
|
||||
gem 'sqlite3', :require => false
|
||||
gem 'rspec-instafail', '>= 0.1.7', :require => false
|
||||
gem 'fuubar'
|
||||
|
||||
gem 'diaspora-client', :git => 'git://github.com/diaspora/diaspora-client.git'
|
||||
#"0.1.0", #:path => '~/workspace/diaspora-client'
|
||||
end
|
||||
|
|
@ -2,6 +2,14 @@
|
|||
ruby -e "system('rm Gemfile.lock') if RUBY_VERSION.include?('1.9')"
|
||||
ruby -e "system('bundle install --without development production') if RUBY_VERSION.include?('1.9')"
|
||||
|
||||
# Change Gemfile if this is a postgresql build
|
||||
echo $DB
|
||||
ruby -e "system('cp config/ci/Gemfile.postgresql Gemfile') if ENV['DB'] == 'postgres'"
|
||||
|
||||
# Create a database.yml for the right database
|
||||
cp config/database.yml.example config/database.yml
|
||||
ruby -e "system('cp config/ci/database.yml.postgresql config/database.yml') if ENV['DB'] == 'postgres'"
|
||||
|
||||
# adjust GC settings for REE
|
||||
export RUBY_HEAP_MIN_SLOTS=1000000
|
||||
export RUBY_HEAP_SLOTS_INCREMENT=1000000
|
||||
|
|
@ -18,6 +26,5 @@ sh -e /etc/init.d/xvfb start
|
|||
sass --update public/stylesheets/sass/:public/stylesheets/
|
||||
|
||||
# Set up database
|
||||
cp config/database.yml.example config/database.yml
|
||||
bundle exec rake db:create
|
||||
bundle exec rake db:schema:load
|
||||
|
|
|
|||
20
config/ci/database.yml.postgresql
Normal file
20
config/ci/database.yml.postgresql
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
common: &common
|
||||
ejabbdb: ejabberd
|
||||
encoding: unicode
|
||||
adapter: postgresql
|
||||
username: postgres
|
||||
password:
|
||||
port: 5432
|
||||
host: localhost
|
||||
|
||||
development:
|
||||
<<: *common
|
||||
database: diaspora_development
|
||||
|
||||
production:
|
||||
<<: *common
|
||||
database: diaspora_production
|
||||
|
||||
test:
|
||||
<<: *common
|
||||
database: "diaspora_test"
|
||||
Loading…
Reference in a new issue