discourse/.travis.yml

14 lines
354 B
YAML
Raw Normal View History

2013-02-08 03:43:07 +08:00
language: ruby
rvm:
2013-06-13 19:12:06 +08:00
- 2.0.0
- 2.1.1
2013-02-08 03:43:07 +08:00
before_script:
- psql -c 'create database discourse_test;' -U postgres
2013-12-18 16:15:22 +08:00
- export DISCOURSE_HOSTNAME=www.example.com
- export RUBY_GC_MALLOC_LIMIT=50000000
- bundle exec rake db:migrate
bundler_args: --without development
2013-10-18 23:33:23 +08:00
script: 'bundle exec rspec && bundle exec rake qunit:test'
2013-02-08 03:43:07 +08:00
services:
2013-03-02 08:22:35 +08:00
- redis-server