File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ os : linux
3
+ dist : bionic
4
+
1
5
language : ruby
2
6
cache : bundler
3
- sudo : required
4
7
rvm :
5
8
- 2.7.1
6
9
- 2.6.6
7
10
- 2.5.8
8
11
- 2.4.10
9
12
- ruby-head
13
+
10
14
gemfile :
11
15
- gemfiles/rails_5.0.7.gemfile
12
16
- gemfiles/rails_5.1.7.gemfile
13
17
- gemfiles/rails_5.2.3.gemfile
14
18
- gemfiles/rails_6.0.1.gemfile
19
+
15
20
services :
16
21
- postgresql
17
22
- mysql
23
+
18
24
addons :
19
25
postgresql : ' 9.6'
26
+
20
27
before_install :
21
28
- sh -c "if [ '$DB_ADAPTER' = 'mysql2' ]; then mysql -e 'create database ajax_datatables_rails;'; fi"
22
29
- sh -c "if [ '$DB_ADAPTER' = 'postgresql' ]; then psql -c 'create database ajax_datatables_rails;' -U postgres; fi"
23
30
- sh -c "if [ '$DB_ADAPTER' = 'oracle_enhanced' ]; then ./spec/install_oracle.sh; fi"
31
+
24
32
env :
25
33
global :
26
34
- ORACLE_COOKIE=sqldev
27
35
- ORACLE_FILE=oracle11g/xe/oracle-xe-11.2.0-1.0.x86_64.rpm.zip
28
36
- ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe
29
37
- ORACLE_SID=XE
30
- matrix :
38
+ jobs :
31
39
- DB_ADAPTER=postgresql
32
40
- DB_ADAPTER=mysql2
33
41
- DB_ADAPTER=sqlite3
34
42
- DB_ADAPTER=oracle_enhanced
35
- matrix :
43
+
44
+ jobs :
36
45
exclude :
37
46
- rvm : 2.4.10
38
47
gemfile : gemfiles/rails_6.0.1.gemfile
48
+
39
49
before_script :
40
50
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
41
51
- chmod +x ./cc-test-reporter
42
52
- ./cc-test-reporter before-build
53
+
43
54
after_script :
44
55
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
You can’t perform that action at this time.
0 commit comments