discourse/.travis.yml

14 lines
400 B
YAML
Raw Normal View History

2013-02-07 21:43:07 +02:00
language: ruby
rvm:
2013-06-13 21:12:06 +10:00
- 2.0.0
2013-02-07 21:43:07 +02: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 21:43:07 +02:00
- psql -c 'create database discourse_test;' -U postgres
2013-02-07 22:03:44 +02:00
- rake db:migrate
- export RUBY_GC_MALLOC_LIMIT=50000000
bundler_args: --without development
2013-10-18 17:33:23 +02:00
script: 'bundle exec rspec && bundle exec rake qunit:test'
2013-02-07 21:43:07 +02:00
services:
2013-03-02 01:22:35 +01:00
- redis-server