forked from dvarrazzo/pgmp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (57 loc) · 1.25 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
58
59
60
61
62
# pgmp -- Travis CI configuration
#
# Copyright (C) 2020 Daniele Varrazzo
#
# This file is part of the PostgreSQL GMP Module
language: python
matrix:
include:
- addons:
postgresql: '9.4'
apt:
packages:
- postgresql-client-9.4
- postgresql-server-dev-9.4
- addons:
postgresql: '9.5'
apt:
packages:
- postgresql-client-9.5
- postgresql-server-dev-9.5
- addons:
postgresql: '9.6'
apt:
packages:
- postgresql-client-9.6
- postgresql-server-dev-9.6
- addons:
postgresql: '10'
apt:
packages:
- postgresql-client-10
- postgresql-server-dev-10
- addons:
postgresql: '11'
apt:
packages:
- postgresql-11
- postgresql-client-11
- postgresql-server-dev-11
env:
PGPORT: "5433"
- addons:
postgresql: '12'
apt:
packages:
- postgresql-12
- postgresql-client-12
- postgresql-server-dev-12
env:
PGPORT: "5433"
install:
- make
- sudo make install
script:
- make installcheck
notifications:
email: false