discourse/.travis.yml

30 lines
487 B
YAML
Raw Normal View History

2013-02-07 21:43:07 +02:00
language: ruby
2013-02-07 21:43:07 +02:00
rvm:
2013-06-13 21:12:06 +10:00
- 2.0.0
- 2.1
services:
- redis-server
sudo: false
cache: bundler
env:
2014-11-07 14:04:32 +13:00
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GC_MALLOC_LIMIT=50000000
before_install:
- npm i -g jshint
- jshint .
2013-02-07 21:43:07 +02:00
before_script:
- psql -c 'create database discourse_test;' -U postgres
2014-11-07 14:10:17 +13:00
- bundle exec rake db:migrate
bundler_args: --without development --deployment
2014-03-05 00:17:34 +05:30
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'