-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
52 lines (43 loc) · 785 Bytes
/
.travis.yml
File metadata and controls
52 lines (43 loc) · 785 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
43
44
45
46
47
48
49
50
51
52
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.2
- 2.3.0
- 2.3.4
- 2.4.1
- jruby-9.1.6.0
- jruby-head
- rbx-3.74
- ruby-head
sudo: false
cache: bundler
before_install:
- gem update --system
- gem install bundler
- gem update bundler
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_5.gemfile
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-3.74
fast_finish: true
exclude:
- rvm: 1.9.3
gemfile: gemfiles/rails_5.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails_5.gemfile
- rvm: 2.1.10
gemfile: gemfiles/rails_5.gemfile
notifications:
email:
on_success: never
on_failure: always