Skip to content

Commit 38b081b

Browse files
df7cbmsdemlei
authored andcommitted
Add .travis.yml
PG13 doesn't work yet: pgs_moc.h:11:31: fatal error: access/tuptoaster.h: No such file or directory
1 parent f60104d commit 38b081b

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.travis.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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

0 commit comments

Comments
 (0)