forked from ice-cube-ruby/ice_cube
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
41 lines (39 loc) · 758 Bytes
/
.travis.yml
File metadata and controls
41 lines (39 loc) · 758 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
sudo: false
language: ruby
before_install:
- gem install bundler
notifications:
email:
- john.crepezzi@gmail.com
- andrew@avit.ca
branches:
only:
- master
rvm:
- 1.9.3
- 2.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
env:
- RAILS_VERSION='~> 3.2'
- RAILS_VERSION='~> 4.2'
- RAILS_VERSION='~> 5.0'
matrix:
exclude:
# Rails 5 only runs on ruby 2.3 and up
- rvm: 1.9.3
env: RAILS_VERSION='~> 5.0'
- rvm: 2.0
env: RAILS_VERSION='~> 5.0'
- rvm: 2.1.10
env: RAILS_VERSION='~> 5.0'
- rvm: 2.2.6
env: RAILS_VERSION='~> 5.0'
# Rails 3 no longer runs on ruby 2.4 and up
- rvm: 2.4.0
env: RAILS_VERSION='~> 3.2'
- rvm: ruby-head
env: RAILS_VERSION='~> 3.2'