2013-02-07 14:43:07 -05:00
|
|
|
language: ruby
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2014-10-28 18:48:57 -04:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- DISCOURSE_HOSTNAME=www.example.com
|
|
|
|
- RUBY_GC_MALLOC_LIMIT=50000000
|
|
|
|
matrix:
|
2015-04-28 22:42:37 -04:00
|
|
|
- "RAILS42=1"
|
2014-10-28 18:48:57 -04:00
|
|
|
- "RAILS_MASTER=1"
|
|
|
|
- "RAILS_MASTER=0"
|
|
|
|
|
2015-03-31 12:58:56 -04:00
|
|
|
addons:
|
|
|
|
postgresql: 9.3
|
|
|
|
|
2014-10-28 18:48:57 -04:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2015-04-24 16:28:27 -04:00
|
|
|
- env: "RAILS_MASTER=1"
|
2015-04-28 22:42:37 -04:00
|
|
|
- env: "RAILS42=1"
|
2015-02-22 14:51:40 -05:00
|
|
|
- rvm: rbx-2
|
2014-10-28 18:48:57 -04:00
|
|
|
fast_finish: true
|
|
|
|
|
2013-02-07 14:43:07 -05:00
|
|
|
rvm:
|
2013-06-13 07:12:06 -04:00
|
|
|
- 2.0.0
|
2014-11-06 20:03:08 -05:00
|
|
|
- 2.1
|
2015-04-24 16:28:27 -04:00
|
|
|
- 2.2
|
2015-02-22 14:51:40 -05:00
|
|
|
- rbx-2
|
2014-11-06 20:03:08 -05:00
|
|
|
|
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
cache: bundler
|
|
|
|
|
2014-03-08 01:14:29 -05:00
|
|
|
before_install:
|
|
|
|
- npm i -g jshint
|
|
|
|
- jshint .
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2013-02-07 14:43:07 -05:00
|
|
|
before_script:
|
2015-04-24 16:28:27 -04:00
|
|
|
- bundle exec rake db:create db:migrate
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2015-04-28 22:42:37 -04:00
|
|
|
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"
|
2014-11-06 20:03:08 -05:00
|
|
|
|
2014-03-04 13:47:34 -05:00
|
|
|
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|