forked from Softices/health_check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (39 loc) · 1012 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
39
40
41
42
43
44
45
46
47
48
49
sudo: false
addons:
apt:
packages:
- net-tools
cache: bundler
language: ruby
notifications:
email:
on_success: change
on_failure: always
before_install:
- gem update --system $RUBYGEMS_VERSION
- gem --version
- gem install bundler ${BUNDLER_VERSION:+-v} ${BUNDLER_VERSION}
- gem install smarter_bundler
- bundle --version
- mkdir -p tmp/bundle
bundler_args: "--binstubs"
script: ./test/test_with_railsapp
matrix:
fast_finish: true
allow_failures:
- rvm: 2.4.3
gemfile: test/rails_edge.gemfile
env: RAILS_VERSION=edge MIDDLEWARE=YES
- rvm: ruby-head
gemfile: test/rails_5.1.gemfile
env: RAILS_VERSION=5.1 MIDDLEWARE=YES
include:
- rvm: 2.4.3
gemfile: test/rails_edge.gemfile
env: RAILS_VERSION=edge MIDDLEWARE=YES
- rvm: ruby-head
gemfile: test/rails_5.1.gemfile
env: RAILS_VERSION=5.1 MIDDLEWARE=YES
- rvm: 2.3.1
gemfile: test/rails_5.1.gemfile
env: RAILS_VERSION=5.1 MIDDLEWARE=YES