forked from matomo-org/piwik-ruby-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
59 lines (57 loc) · 1.16 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
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- jruby
- jruby-9.1.5.0
# - rbx-19mode
script: bundle exec rspec spec
sudo: false
gemfile:
- ci/Gemfile.as32
- ci/Gemfile.as42
- ci/Gemfile.as50
- ci/Gemfile.as51
# Exclude incompatible combinations (See http://logfile.swobspace.net/blog/2015/01/01/Ruby-and-Rails.html)
matrix:
exclude:
# ActiveSupport 5.1
- rvm: 1.9.3
gemfile: ci/Gemfile.as51
- rvm: 2.0
gemfile: ci/Gemfile.as51
- rvm: 2.1
gemfile: ci/Gemfile.as51
- rvm: 2.2
gemfile: ci/Gemfile.as51
- rvm: jruby
gemfile: ci/Gemfile.as51
# ActiveSupport 5.0
- rvm: 1.9.3
gemfile: ci/Gemfile.as50
- rvm: 2.0
gemfile: ci/Gemfile.as50
- rvm: 2.1
gemfile: ci/Gemfile.as50
- rvm: 2.2
gemfile: ci/Gemfile.as50
- rvm: jruby
gemfile: ci/Gemfile.as50
# ActiveSupport 4.2
- rvm: 2.2
gemfile: ci/Gemfile.as40
- rvm: 2.3
gemfile: ci/Gemfile.as40
# ActiveSupport 3.2
- rvm: 2.1
gemfile: ci/Gemfile.as32
- rvm: 2.2
gemfile: ci/Gemfile.as32
- rvm: 2.3
gemfile: ci/Gemfile.as32