2013-02-07 21:43:07 +02:00
|
|
|
language: ruby
|
|
|
|
rvm:
|
2013-06-13 21:12:06 +10:00
|
|
|
- 2.0.0
|
2014-05-12 11:33:21 +10:00
|
|
|
- 2.1.2
|
2014-03-08 01:14:29 -05:00
|
|
|
before_install:
|
|
|
|
- npm i -g jshint
|
|
|
|
- jshint .
|
2013-02-07 21:43:07 +02:00
|
|
|
before_script:
|
|
|
|
- psql -c 'create database discourse_test;' -U postgres
|
2013-12-18 19:15:22 +11:00
|
|
|
- export DISCOURSE_HOSTNAME=www.example.com
|
2013-03-10 20:14:46 -07:00
|
|
|
- export RUBY_GC_MALLOC_LIMIT=50000000
|
2014-01-06 12:06:23 +11:00
|
|
|
- bundle exec rake db:migrate
|
2013-03-06 12:36:19 +00:00
|
|
|
bundler_args: --without development
|
2014-03-05 00:17:34 +05:30
|
|
|
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
|
2013-02-07 21:43:07 +02:00
|
|
|
services:
|
2013-03-02 01:22:35 +01:00
|
|
|
- redis-server
|