discourse/.travis.yml

17 lines
435 B
YAML
Raw Normal View History

2013-02-07 13:43:07 -06:00
language: ruby
rvm:
2013-06-13 06:12:06 -05:00
- 2.0.0
2014-05-11 20:33:21 -05:00
- 2.1.2
before_install:
- npm i -g jshint
- jshint .
2013-02-07 13:43:07 -06:00
before_script:
- psql -c 'create database discourse_test;' -U postgres
2013-12-18 02:15:22 -06:00
- export DISCOURSE_HOSTNAME=www.example.com
- export RUBY_GC_MALLOC_LIMIT=50000000
- bundle exec rake db:migrate
bundler_args: --without development
2014-03-04 12:47:34 -06:00
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'
2013-02-07 13:43:07 -06:00
services:
2013-03-01 18:22:35 -06:00
- redis-server