Split installation into its own phase

This commit is contained in:
Rafa de la Torre
2016-08-09 15:44:36 +02:00
parent 58ef79fb6a
commit 84d3238d59

View File

@@ -48,6 +48,8 @@ before_install:
# save the postgres port for later usage
- sudo cat /etc/postgresql/9.5/main/postgresql.conf | grep ^port | grep -oh '[0-9]*' > .pg95.port
script:
install:
- sudo make install
script:
- PGPORT=$(cat .pg95.port) make test || { cat src/pg/test/regression.diffs; false; }