forked from bucardo/bucardo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (37 loc) · 1021 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
language: perl
perl:
- 5.24
- 5.30
sudo: true
env:
global:
- PGHOST=127.0.0.1
matrix:
- PGVERSION=12
- PGVERSION=11
- PGVERSION=10
- PGVERSION=9.6
- PGVERSION=9.5
- PGVERSION=9.4
- PGVERSION=9.3
before_install:
- sudo apt-get -y --purge remove postgresql libpq-dev libpq5
postgresql-client-common postgresql-common
- sudo rm -rf /var/lib/postgresql
- sudo apt-get update -qq
- sudo apt-get install -y
postgresql-${PGVERSION}
postgresql-client-${PGVERSION}
postgresql-${PGVERSION}-pgtap
postgresql-server-dev-${PGVERSION}
postgresql-server-dev-all
postgresql-plperl-${PGVERSION}
debhelper fakeroot libdbd-pg-perl
libtap-parser-sourcehandler-pgtap-perl
# Set PATH as postgresql-server-dev-all pretends version is 11
- export PATH=/usr/lib/postgresql/${PGVERSION}/bin:${PATH}
script:
- perl Makefile.PL
- BUCARDO_LOG_ERROR_CONTEXT=1 PATH=$PATH:/usr/lib/postgresql/${PGVERSION}/bin make test
after_failure:
- cat log.context