Added travis configuration for CI tests

This commit is contained in:
Daniele Varrazzo
2017-03-25 22:52:40 +00:00
parent d0217d81e3
commit 2a9ca79772
4 changed files with 67 additions and 0 deletions

10
regress/travis_test.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
set -x
export PG_REGRESS_DIFF_OPTS=-u
if ! make installcheck; then
cat regress/regression.diffs
exit 1
fi