This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/.travis.yml

14 lines
402 B
YAML

language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
- cp config/database.yml.development-sample config/database.yml
- cp config/redis.yml.sample config/redis.yml
- psql -c 'create database discourse_test;' -U postgres
- rake db:migrate
- export RUBY_GC_MALLOC_LIMIT=50000000
bundler_args: --without development
script: 'rake spec && bundle exec rake qunit:test'
services:
- redis-server