-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathold-travis.yml
62 lines (53 loc) · 1.36 KB
/
old-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
58
59
60
61
62
language: perl
perl:
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
matrix:
include:
- perl: "5.20"
dist: trusty
before_script:
- psql -U postgres -c 'create database mhf_test'
- mysql -e 'create database mhf_test;'
env:
- TEST_ONLINE_mariadb=mariadb://root@/mhf_test
- perl: "5.18"
dist: trusty
before_script:
- psql -U postgres -c 'create database mhf_test'
- mysql -e 'create database mhf_test;'
env:
- TEST_ONLINE_mariadb=mariadb://root@/mhf_test
- perl: "5.16"
dist: trusty
before_script:
- psql -U postgres -c 'create database mhf_test'
- mysql -e 'create database mhf_test;'
env:
- TEST_ONLINE_mariadb=mariadb://root@/mhf_test
env:
global:
- HARNESS_OPTIONS=j9
- LC_ALL=C
- TEST_ONLINE_mariadb=mariadb://root:travis@/mhf_test
- TEST_ONLINE_pg=postgresql://postgres@/mhf_test
before_script:
- psql -U postgres -c 'create database mhf_test'
- sudo mysql -e "SET Password=PASSWORD('travis')"
- sudo mysql -e 'create database mhf_test;'
addons:
mariadb: 10.4
postgresql: 9.6
services:
- postgresql
install:
- cpanm -n Test::Pod Test::Pod::Coverage
- cpanm -n Devel::CheckLib DBI DBD::MariaDB Mojo::mysql Mojo::Pg
- cpanm -n --installdeps .
script:
- prove -lvr t
notifications:
email: false