discourse/.travis.yml

46 lines
751 B
YAML
Raw Normal View History

2013-02-07 13:43:07 -06:00
language: ruby
env:
global:
- DISCOURSE_HOSTNAME=www.example.com
- RUBY_GC_MALLOC_LIMIT=50000000
matrix:
- "RAILS_MASTER=1"
- "RAILS_MASTER=0"
addons:
postgresql: 9.3
matrix:
allow_failures:
- rvm: 2.0.0
env: "RAILS_MASTER=1"
- rvm: 2.1
env: "RAILS_MASTER=1"
- rvm: rbx-2
fast_finish: true
2013-02-07 13:43:07 -06:00
rvm:
2013-06-13 06:12:06 -05:00
- 2.0.0
- 2.1
- rbx-2
services:
- redis-server
sudo: false
cache: bundler
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
2014-11-06 19:10:17 -06:00
- bundle exec rake db:migrate
2014-11-06 22:05:24 -06:00
bundler_args: --without development --deployment --retry=3 --jobs=3
2014-03-04 12:47:34 -06:00
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'