mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:31:56 +08:00
6257c48613
* added RVM option for single-user install * clarified Web Server options * bluepill sample config: create socket directory if it doesn't exist * add multisite.yml.production-sample * rename production.sample.rb (OCD) * make two database.yml samples (one for dev, one for prod) * fixed travis build (database.yml.sample renamed) * fix other references to database.yml.sample * clean up 'rvm requirements' instructions as per @mpapis
15 lines
435 B
YAML
15 lines
435 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 jshint && rake spec && bundle exec guard-jasmine --server-timeout=60'
|
|
services:
|
|
- redis-server
|