File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # run the testsuite on travis-ci.com
2
+ ---
3
+ # versions to run on
4
+ env :
5
+ - PG_SUPPORTED_VERSIONS=9.1
6
+ - PG_SUPPORTED_VERSIONS=9.2
7
+ - PG_SUPPORTED_VERSIONS=9.3
8
+ - PG_SUPPORTED_VERSIONS=9.4
9
+ - PG_SUPPORTED_VERSIONS=9.5
10
+ - PG_SUPPORTED_VERSIONS=9.6
11
+ - PG_SUPPORTED_VERSIONS=10
12
+ - PG_SUPPORTED_VERSIONS=11
13
+ - PG_SUPPORTED_VERSIONS=12
14
+ # - PG_SUPPORTED_VERSIONS=13
15
+
16
+ language : C
17
+ dist : xenial
18
+
19
+ before_install :
20
+ # extra apt.pg.o.sh options added in version 204, travis currently has 199 (2019-11-27)
21
+ - sudo apt-get -qq update
22
+ - sudo apt-get -y install postgresql-common
23
+
24
+ install :
25
+ - sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -p -v $PG_SUPPORTED_VERSIONS -i
26
+
27
+ script :
28
+ - make
29
+ - sudo make install
30
+ - pg_virtualenv make installcheck
31
+ - if test -s regression.diffs; then cat regression.diffs; fi
You can’t perform that action at this time.
0 commit comments