discourse/.travis.yml

15 lines
423 B
YAML
Raw Normal View History

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