mirror of https://github.com/citusdata/citus.git
Remove 9.5 support from configure and travis.
This effectively disables 9.5 support, but all the supporting code is still there. Subsequent commits will remove that.pull/1470/head
parent
2204da19f0
commit
0ebdd26b58
|
@ -14,7 +14,6 @@ env:
|
||||||
# During pull request builds (not push builds), use custom-built PostgreSQL
|
# During pull request builds (not push builds), use custom-built PostgreSQL
|
||||||
- USE_CUSTOM_PG="${TRAVIS_PULL_REQUEST_SHA}"
|
- USE_CUSTOM_PG="${TRAVIS_PULL_REQUEST_SHA}"
|
||||||
matrix:
|
matrix:
|
||||||
- PGVERSION=9.5
|
|
||||||
- PGVERSION=9.6
|
- PGVERSION=9.6
|
||||||
- PGVERSION=10
|
- PGVERSION=10
|
||||||
before_install:
|
before_install:
|
||||||
|
|
|
@ -2005,7 +2005,7 @@ if test -z "$version_num"; then
|
||||||
as_fn_error $? "Could not detect PostgreSQL version from pg_config." "$LINENO" 5
|
as_fn_error $? "Could not detect PostgreSQL version from pg_config." "$LINENO" 5
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$version_num" != '9.5' -a "$version_num" != '9.6' -a "$version_num" != '10'; then
|
if test "$version_num" != '9.6' -a "$version_num" != '10'; then
|
||||||
as_fn_error $? "Citus is not compatible with the detected PostgreSQL version ${version_num}." "$LINENO" 5
|
as_fn_error $? "Citus is not compatible with the detected PostgreSQL version ${version_num}." "$LINENO" 5
|
||||||
else
|
else
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: building against PostgreSQL $version_num" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: building against PostgreSQL $version_num" >&5
|
||||||
|
|
|
@ -59,7 +59,7 @@ if test -z "$version_num"; then
|
||||||
AC_MSG_ERROR([Could not detect PostgreSQL version from pg_config.])
|
AC_MSG_ERROR([Could not detect PostgreSQL version from pg_config.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "$version_num" != '9.5' -a "$version_num" != '9.6' -a "$version_num" != '10'; then
|
if test "$version_num" != '9.6' -a "$version_num" != '10'; then
|
||||||
AC_MSG_ERROR([Citus is not compatible with the detected PostgreSQL version ${version_num}.])
|
AC_MSG_ERROR([Citus is not compatible with the detected PostgreSQL version ${version_num}.])
|
||||||
else
|
else
|
||||||
AC_MSG_NOTICE([building against PostgreSQL $version_num])
|
AC_MSG_NOTICE([building against PostgreSQL $version_num])
|
||||||
|
|
Loading…
Reference in New Issue