forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
42 lines (32 loc) · 724 Bytes
/
.travis.yml
File metadata and controls
42 lines (32 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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"
- rvm: rbx-2
fast_finish: true
rvm:
- 2.0.0
- 2.1
- rbx-2
services:
- redis-server
sudo: false
cache: bundler
before_install:
- npm i -g jshint
- jshint .
before_script:
- psql -c 'create database discourse_test;' -U postgres
- bundle exec rake db:migrate
bundler_args: --without development --deployment --retry=3 --jobs=3
script: 'bundle exec rspec && bundle exec rake plugin:spec && bundle exec rake qunit:test'