discourse/.travis.yml

15 lines
440 B
YAML
Raw Normal View History

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