discourse/.travis.yml

41 lines
697 B
YAML
Raw Normal View History

2013-02-07 14:43:07 -05:00
language: ruby
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GC_MALLOC_LIMIT=50000000
matrix:
- "RAILS_MASTER=1"
- "RAILS_MASTER=0"
matrix:
allow_failures:
- rvm: 2.0.0
env: "RAILS_MASTER=1"
- rvm: 2.1
env: "RAILS_MASTER=1"
fast_finish: true
2013-02-07 14:43:07 -05:00
rvm:
2013-06-13 07:12:06 -04:00
- 2.0.0
- 2.1
services:
- redis-server
sudo: false
cache: bundler
before_install:
- npm i -g jshint
- jshint .
2013-02-07 14:43:07 -05:00
before_script:
- psql -c 'create database discourse_test;' -U postgres
2014-11-06 20:10:17 -05:00
- bundle exec rake db:migrate
2014-11-06 23:05:24 -05:00
bundler_args: --without development --deployment --retry=3 --jobs=3
2014-03-04 13:47:34 -05:00
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'