-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (33 loc) · 1003 Bytes
/
.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
language: ruby
cache: bundler
before_install:
- gem update --system
- gem update bundler
# We only test the oldest and the newest ruby versions that we support. We
# do not test intermediate versions.
rvm:
- 2.3.8
- 2.4.4
- 2.5.3
# We only test living versions of rails, per the [rails maintenance
# policy](http://guides.rubyonrails.org/maintenance_policy.html)
gemfile:
- gemfiles/rails-5.2.rb
- gemfiles/rails-6.0.rb
matrix:
exclude:
# rails 6 will not support ruby < 2.4.1
- rvm: 2.3.8
gemfile: gemfiles/rails-6.0.rb
# optimization: don't test intermediate rubies (see above)
- rvm: 2.4.4
gemfile: gemfiles/rails-5.2.rb
fast_finish: true
# We want to use `sudo: false` because the container infrastructure is supposed
# to be faster, but Travis is having issues with containers lately ..
#
# > No output has been received in the last 10m0s
#
# .. and they recommend we use the VM infrastructure (`sudo: required`) in
# the meantime.
sudo: required