forked from shioyama/mobility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (56 loc) · 1.86 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
language: ruby
cache: bundler
rvm:
- 2.4
- 2.5
- 2.6
env:
- DB=postgres ORM=active_record RAILS_VERSION=4.2
- DB=mysql ORM=active_record RAILS_VERSION=4.2
- DB=sqlite3 ORM=active_record RAILS_VERSION=4.2
- DB=postgres ORM=active_record RAILS_VERSION=5.0
- DB=mysql ORM=active_record RAILS_VERSION=5.0
- DB=sqlite3 ORM=active_record RAILS_VERSION=5.0
- DB=postgres ORM=active_record RAILS_VERSION=5.1
- DB=mysql ORM=active_record RAILS_VERSION=5.1
- DB=sqlite3 ORM=active_record RAILS_VERSION=5.1
- DB=postgres ORM=active_record RAILS_VERSION=5.2
- DB=mysql ORM=active_record RAILS_VERSION=5.2
- DB=sqlite3 ORM=active_record RAILS_VERSION=5.2
- DB=postgres ORM=active_record RAILS_VERSION=6.0
- DB=mysql ORM=active_record RAILS_VERSION=6.0
- DB=sqlite3 ORM=active_record RAILS_VERSION=6.0
- DB=postgres ORM=sequel SEQUEL_VERSION=4
- DB=mysql ORM=sequel SEQUEL_VERSION=4
- DB=sqlite3 ORM=sequel SEQUEL_VERSION=4
- DB=postgres ORM=sequel SEQUEL_VERSION=5
- DB=mysql ORM=sequel SEQUEL_VERSION=5
- DB=sqlite3 ORM=sequel SEQUEL_VERSION=5
- DB=sqlite3 ORM= TEST_PERFORMANCE=true
- DB=sqlite3 ORM= I18N_FALLBACKS=true
matrix:
fast_finish: true
exclude:
- rvm: 2.4
env: DB=postgres ORM=active_record RAILS_VERSION=6.0
- rvm: 2.4
env: DB=mysql ORM=active_record RAILS_VERSION=6.0
- rvm: 2.4
env: DB=sqlite3 ORM=active_record RAILS_VERSION=6.0
before_script:
- bundle exec rake db:create db:up
before_install: gem install bundler
addons:
postgresql: "9.4"
apt:
update: true
services:
- postgresql
- mysql
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/952962a1b06353b27efa
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always