2013-02-08 03:43:07 +08:00
|
|
|
language: ruby
|
2014-11-07 09:03:08 +08:00
|
|
|
|
2013-02-08 03:43:07 +08:00
|
|
|
rvm:
|
2013-06-13 19:12:06 +08:00
|
|
|
- 2.0.0
|
2014-11-07 09:03:08 +08:00
|
|
|
- 2.1
|
|
|
|
|
|
|
|
services:
|
|
|
|
- redis-server
|
|
|
|
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
cache: bundler
|
|
|
|
|
|
|
|
env:
|
2014-11-07 09:04:32 +08:00
|
|
|
global:
|
|
|
|
- DISCOURSE_HOSTNAME=www.example.com
|
|
|
|
- RUBY_GC_MALLOC_LIMIT=50000000
|
2014-11-07 09:03:08 +08:00
|
|
|
|
2014-03-08 14:14:29 +08:00
|
|
|
before_install:
|
|
|
|
- npm i -g jshint
|
|
|
|
- jshint .
|
2014-11-07 09:03:08 +08:00
|
|
|
|
2013-02-08 03:43:07 +08:00
|
|
|
before_script:
|
|
|
|
- psql -c 'create database discourse_test;' -U postgres
|
2014-11-07 09:10:17 +08:00
|
|
|
- bundle exec rake db:migrate
|
2014-11-07 09:03:08 +08:00
|
|
|
|
|
|
|
bundler_args: --without development --deployment
|
|
|
|
|
2014-03-05 02:47:34 +08:00
|
|
|
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|