diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000..5b2125b0a3df3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: c +compiler: +- clang +- gcc + +env: + global: + - CONFIG='--enable-debug --enable-cassert' + matrix: + - TAP='' BLKSZ=32 WALBLK=32 + + - TAP='--enable-tap-tests' BLKSZ=4 WALBLK=4 + +script: + - ./configure $CONFIG $TAP + - make -j2 + - make check-world + - test ! -e $TRAVIS_BUILD_DIR/src/test/regress/regression.out || cat $TRAVIS_BUILD_DIR/src/test/regress/regression.out + - test ! -e $TRAVIS_BUILD_DIR/src/test/regress/regression.diffs || cat $TRAVIS_BUILD_DIR/src/test/regress/regression.diffs diff --git a/README b/README index 302028e9928ee..3988e80e5c58d 100644 --- a/README +++ b/README @@ -1,3 +1,5 @@ +This (https://github.com/flightaware/postgres) is a fork of PostgreSQL in support of work done by FlightAware and Blue Treble to extend the capabilities of the PL/Tcl procedural language. + PostgreSQL Database Management System ===================================== diff --git a/_vimrc_local.vim b/_vimrc_local.vim new file mode 100644 index 0000000000000..599a8c1553261 --- /dev/null +++ b/_vimrc_local.vim @@ -0,0 +1 @@ +set shiftwidth=4 tabstop=4 noexpandtab