2013-02-07 21:43:07 +02:00
|
|
|
language: ruby
|
|
|
|
rvm:
|
|
|
|
- 1.9.3
|
|
|
|
before_script:
|
2013-02-12 16:30:56 -05:00
|
|
|
- cp config/database.yml.sample config/database.yml
|
|
|
|
- cp config/redis.yml.sample config/redis.yml
|
2013-02-07 21:43:07 +02:00
|
|
|
- psql -c 'create database discourse_test;' -U postgres
|
2013-02-07 22:03:44 +02:00
|
|
|
- rake db:migrate
|
2013-03-10 20:14:46 -07:00
|
|
|
- export RUBY_GC_MALLOC_LIMIT=50000000
|
2013-03-06 12:36:19 +00:00
|
|
|
bundler_args: --without development
|
2013-03-02 01:22:35 +01:00
|
|
|
script: 'rake jshint && rake spec && bundle exec guard-jasmine --server-timeout=60'
|
2013-02-07 21:43:07 +02:00
|
|
|
services:
|
2013-03-02 01:22:35 +01:00
|
|
|
- redis-server
|