forked from Purple-Devs/health_check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
167 lines (124 loc) · 4.12 KB
/
.travis.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
sudo: false
addons:
apt:
packages:
- net-tools
cache: bundler
language: ruby
notifications:
email:
on_success: change
on_failure: always
before_install:
- gem update --system $RUBYGEMS_VERSION
- gem --version
- gem install bundler ${BUNDLER_VERSION:+-v} ${BUNDLER_VERSION}
- bundle --version
- mkdir -p tmp/bundle
bundler_args: "--binstubs"
script: ./test/test_with_railsapp
matrix:
fast_finish: true
allow_failures:
- rvm: 2.3.1
gemfile: test/rails_edge.gemfile
env: RAILS_VERSION=edge MIDDLEWARE=YES
- rvm: ruby-head
gemfile: test/rails_5.0.gemfile
env: RAILS_VERSION=5.0 MIDDLEWARE=YES
include:
# -------------------------------------
# Standard
# ruby 5.0 Jun. 2016
- rvm: 2.3.1
gemfile: test/rails_5.0.gemfile
env: RAILS_VERSION=5.0 MIDDLEWARE=no
- rvm: 2.2.2
gemfile: test/rails_5.0.gemfile
env: RAILS_VERSION=5.0 MIDDLEWARE=no
# rails 4.2 Dec, 2014
- rvm: 2.2.0
gemfile: test/rails_4.2.gemfile
env: RAILS_VERSION=4.2 MIDDLEWARE=no
- rvm: 2.1.2
gemfile: test/rails_4.2.gemfile
env: RAILS_SERVER=puma RAILS_VERSION=4.2 MIDDLEWARE=no
# Can't find i18n?? because it can't compile?
#- rvm: 2.1.2
# gemfile: test/rails_4.2.gemfile
# env: RAILS_SERVER=passenger RAILS_VERSION=4.2
- rvm: 2.1.2
gemfile: test/rails_4.2.gemfile
env: RAILS_SERVER=thin RAILS_VERSION=4.2 MIDDLEWARE=no
# No longer supported by travis
#- rvm: rbx-2.2.6
# gemfile: test/rails_4.0.gemfile
# env: RAILS_ENV2=development RAILS_VERSION=4.0
- rvm: 2.1.2
gemfile: test/rails_4.2.gemfile
env: RAILS_SERVER=unicorn RAILS_VERSION=4.2 MIDDLEWARE=no
# Disabled because it takes way too long (40+ mins)
# Temporary version lock until Bundler >= 1.13.2
# https://github.com/bundler/bundler/issues/4975
#- rvm: jruby-19mode
# gemfile: test/rails_4.2.gemfile
# env: BUNDLER_VERSION=1.12.5 RAILS_VERSION=4.2
# rails 4.1 April 8, 2014
- rvm: 2.1.2
gemfile: test/rails_4.1.gemfile
env: RAILS_VERSION=4.1 MIDDLEWARE=no
# rails 4.0
- rvm: 1.9.3
gemfile: test/rails_4.0.gemfile
env: RAILS_VERSION=4.0 MIDDLEWARE=no
# -------------------------------------
# INSTALLED AS MIDDLEWARE
# ruby / rails edge
- rvm: 2.3.1
gemfile: test/rails_edge.gemfile
env: RAILS_VERSION=edge MIDDLEWARE=YES
# ruby 5.0 Jun. 2016
- rvm: 2.3.1
gemfile: test/rails_5.0.gemfile
env: RAILS_VERSION=5.0 MIDDLEWARE=YES
- rvm: 2.2.2
gemfile: test/rails_5.0.gemfile
env: RAILS_VERSION=5.0 MIDDLEWARE=YES
- rvm: ruby-head
gemfile: test/rails_5.0.gemfile
env: RAILS_VERSION=5.0 MIDDLEWARE=YES
# rails 4.2 Dec, 2014
- rvm: 2.2.0
gemfile: test/rails_4.2.gemfile
env: RAILS_VERSION=4.2 MIDDLEWARE=YES
- rvm: 2.1.2
gemfile: test/rails_4.2.gemfile
env: RAILS_SERVER=puma RAILS_VERSION=4.2 MIDDLEWARE=YES
# Can't find i18n?? because it can't compile?
#- rvm: 2.1.2
# gemfile: test/rails_4.2.gemfile
# env: RAILS_SERVER=passenger RAILS_VERSION=4.2
- rvm: 2.1.2
gemfile: test/rails_4.2.gemfile
env: RAILS_SERVER=thin RAILS_VERSION=4.2 MIDDLEWARE=YES
# No longer supported by travis
#- rvm: rbx-2.2.6
# gemfile: test/rails_4.0.gemfile
# env: RAILS_ENV2=development RAILS_VERSION=4.0 MIDDLEWARE=YES
- rvm: 2.1.2
gemfile: test/rails_4.2.gemfile
env: RAILS_SERVER=unicorn RAILS_VERSION=4.2 MIDDLEWARE=YES
# Disabled because it takes way too long (40+ mins)
# Temporary version lock until Bundler >= 1.13.2
# https://github.com/bundler/bundler/issues/4975
#- rvm: jruby-19mode
# gemfile: test/rails_4.2.gemfile
# env: BUNDLER_VERSION=1.12.5 RAILS_VERSION=4.2 MIDDLEWARE=YES
# rails 4.1 April 8, 2014
- rvm: 2.1.2
gemfile: test/rails_4.1.gemfile
env: RAILS_VERSION=4.1 MIDDLEWARE=YES
# rails 4.0
- rvm: 1.9.3
gemfile: test/rails_4.0.gemfile
env: RAILS_VERSION=4.0 MIDDLEWARE=YES