forked from oauth-xx/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (45 loc) · 1.45 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
before_install:
- gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems)
- gem update bundler --conservative
bundler_args: --no-deployment --jobs 3 --retry 3
cache: bundler
language: ruby
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-3
- rvm: jruby-1.7.27
fast_finish: true
include:
- rvm: jruby-1.7.27 # targets MRI v1.9
gemfile: gemfiles/jruby_1.7.gemfile
- rvm: 1.9.3-p551
gemfile: gemfiles/ruby_1.9.gemfile
- rvm: 2.0.0-p648
gemfile: gemfiles/ruby_2.0.gemfile
- rvm: 2.1.10
gemfile: gemfiles/ruby_2.1.gemfile
- rvm: jruby-9.0.5.0 # targets MRI v2.0
gemfile: gemfiles/jruby_9.0.gemfile
# DEPRECATION WARNING
# oauth2 1.x series releases are the last to support Ruby versions above
# oauth2 2.x series releases will support Ruby versions below, and not above
- rvm: jruby-9.1.9.0 # targets MRI v2.3
gemfile: gemfiles/jruby_9.1.gemfile
- rvm: 2.2.10
gemfile: gemfiles/ruby_2.2.gemfile
- rvm: 2.3.7
gemfile: gemfiles/ruby_2.3.gemfile
- rvm: 2.4.4
gemfile: gemfiles/ruby_2.4.gemfile
- rvm: jruby-9.2.0.0 # targets MRI v2.5
gemfile: gemfiles/jruby_9.2.gemfile
- rvm: 2.5.1
gemfile: gemfiles/ruby_2.5.gemfile
- rvm: jruby-head
gemfile: gemfiles/jruby_head.gemfile
- rvm: ruby-head
gemfile: gemfiles/ruby_head.gemfile
- rvm: rbx-3
sudo: false