We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9be3b47 commit a46aaa0Copy full SHA for a46aaa0
.travis.yml
@@ -1,11 +1,12 @@
1
+sudo: required
2
+dist: trusty
3
language: c
-
4
env:
5
- PGVERSION=9.1
6
- PGVERSION=9.2
7
- PGVERSION=9.3
8
- PGVERSION=9.4
9
+ - PGVERSION=9.5
10
before_script:
11
- export PATH=/usr/lib/postgresql/$PGVERSION/bin:$PATH # Add our chosen PG version to the path
12
- sudo /etc/init.d/postgresql stop # Stop whichever version of PG that travis started
@@ -14,7 +15,6 @@ before_script:
14
15
- sudo apt-get install postgresql-server-dev-$PGVERSION # Required for PGXS
16
- sudo apt-get install postgresql-common # Required for extension support files
17
- createdb hll_regress # Create the test database
18
script:
19
- make && sudo make install
20
- psql -c "create extension hll" hll_regress
0 commit comments