forked from binarylogic/authlogic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
39 lines (33 loc) · 1009 Bytes
/
.travis.yml
File metadata and controls
39 lines (33 loc) · 1009 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
language: ruby
# cache: bundler
# We would like to enable travis' bundler cache (cache: bundler) but for some reason
# travis installs our bundle under the test directory (test/vendor/bundle/*) and, as a
# result, travis tries to run all of the tests of all of our dependencies!
# TODO: There's probably a way to configure the bundle path
before_install:
- gem update bundler
rvm:
- 1.9.3
- 2.1.9
- 2.2.5
- 2.3.1
gemfile:
- test/gemfiles/Gemfile.rails-3.2.x
- test/gemfiles/Gemfile.rails-4.0.x
- test/gemfiles/Gemfile.rails-4.1.x
- test/gemfiles/Gemfile.rails-4.2.x
- test/gemfiles/Gemfile.rails-5.0.x
matrix:
exclude:
- rvm: 1.9.3
gemfile: test/gemfiles/Gemfile.rails-4.1.x
- rvm: 1.9.3
gemfile: test/gemfiles/Gemfile.rails-5.0.x
- rvm: 2.1.9
gemfile: test/gemfiles/Gemfile.rails-5.0.x
- rvm: 2.2.5
gemfile: test/gemfiles/Gemfile.rails-3.2.x
- rvm: 2.3.1
gemfile: test/gemfiles/Gemfile.rails-3.2.x
fast_finish: true
sudo: false