mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-30 02:56:26 -05:00
Test on rails 4.2 and master
This commit is contained in:
parent
25e28a1bdd
commit
338fb6efdd
1 changed files with 6 additions and 1 deletions
|
@ -5,6 +5,7 @@ env:
|
||||||
- DISCOURSE_HOSTNAME=www.example.com
|
- DISCOURSE_HOSTNAME=www.example.com
|
||||||
- RUBY_GC_MALLOC_LIMIT=50000000
|
- RUBY_GC_MALLOC_LIMIT=50000000
|
||||||
matrix:
|
matrix:
|
||||||
|
- "RAILS42=1"
|
||||||
- "RAILS_MASTER=1"
|
- "RAILS_MASTER=1"
|
||||||
- "RAILS_MASTER=0"
|
- "RAILS_MASTER=0"
|
||||||
|
|
||||||
|
@ -14,6 +15,7 @@ addons:
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- env: "RAILS_MASTER=1"
|
- env: "RAILS_MASTER=1"
|
||||||
|
- env: "RAILS42=1"
|
||||||
- rvm: rbx-2
|
- rvm: rbx-2
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
|
@ -37,6 +39,9 @@ before_install:
|
||||||
before_script:
|
before_script:
|
||||||
- bundle exec rake db:create db:migrate
|
- bundle exec rake db:create db:migrate
|
||||||
|
|
||||||
bundler_args: --without development --deployment --retry=3 --jobs=3
|
install:
|
||||||
|
- bash -c "if [ '$RAILS42' == '1' ]; then bundle update --retry=3 --jobs=3 rails rails-observers; fi"
|
||||||
|
- bash -c "if [ '$RAILS_MASTER' == '1' ]; then bundle update --retry=3 --jobs=3 arel rails rails-observers seed-fu; fi"
|
||||||
|
- bash -c "if [ '$RAILS_MASTER' == '0' ]; then bundle install --without development --deployment --retry=3 --jobs=3; fi"
|
||||||
|
|
||||||
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|
||||||
|
|
Loading…
Reference in a new issue