mirror of https://github.com/citusdata/citus.git
Add PG11/master build, bump tools (#1588)
This build is allowed to fail and finish-fast is enabled, so there is no negative impact on developers, yet we can now stay better abreast of upcoming PostgreSQL changes. The latest citus tools version also adds enable-depend to the flags in our "custom PG" source-based builds which will result in fewer false failures due to build caching behavior.pull/1635/merge
parent
56f98c7300
commit
0e134a9178
20
.travis.yml
20
.travis.yml
|
@ -13,11 +13,16 @@ env:
|
||||||
- secure: degV+qb2xHiea7E2dGk/WLvmYjq4ZsBn6ZPko+YhRcNm2GRXRaU3FqMBIecPtsEEFYaL5GwCQq/CgBf9aQxgDQ+t2CrmtGTtI9AGAbVBl//amNeJOoLe6QvrDpSQX5pUxwDLCng8cvoQK7ZxGlNCzDKiu4Ep4DUWgQVpauJkQ9nHjtSMZvUqCoI9h1lBy9Mxh7YFfHPW2PAXCqpV4VlNiIYF84UKdX3MXKLy9Yt0JBSNTWLZFp/fFw2qNwzFvN94rF3ZvFSD7Wp6CIhT6R5/6k6Zx8YQIrjWhgm6OVy1osUA8X7W79h2ISPqKqMNVJkjJ+N8S4xuQU0kfejnQ74Ie/uJiHCmbW5W2TjpL1aU3FQpPsGwR8h0rSeHhJAJzd8Ma+z8vvnnQHDyvetPBB0WgA/VMQCu8uEutyfYw2hDmB2+l2dDwkViaI7R95bReAGrpd5uNqklAXuR7yOeArz0ZZpHV0aZHGcNBxznMaZExSVZ5DVPW38UPn7Kgse8BnOWeLgnA1hJVp6CmBCtu+hKYt+atBPgRbM8IUINnKKZf/Sk6HeJIJZs662jD8/X93vFi0ZtyV2jEKJpouWw8j4vrGGsaDzTEUcyJgDqZj7tPJptM2L5B3BcFJmkGj2HO3N+LGDarJrVBBSiEjhTgx4NnLiKZnUbMx547mCRg2akk2w=
|
- secure: degV+qb2xHiea7E2dGk/WLvmYjq4ZsBn6ZPko+YhRcNm2GRXRaU3FqMBIecPtsEEFYaL5GwCQq/CgBf9aQxgDQ+t2CrmtGTtI9AGAbVBl//amNeJOoLe6QvrDpSQX5pUxwDLCng8cvoQK7ZxGlNCzDKiu4Ep4DUWgQVpauJkQ9nHjtSMZvUqCoI9h1lBy9Mxh7YFfHPW2PAXCqpV4VlNiIYF84UKdX3MXKLy9Yt0JBSNTWLZFp/fFw2qNwzFvN94rF3ZvFSD7Wp6CIhT6R5/6k6Zx8YQIrjWhgm6OVy1osUA8X7W79h2ISPqKqMNVJkjJ+N8S4xuQU0kfejnQ74Ie/uJiHCmbW5W2TjpL1aU3FQpPsGwR8h0rSeHhJAJzd8Ma+z8vvnnQHDyvetPBB0WgA/VMQCu8uEutyfYw2hDmB2+l2dDwkViaI7R95bReAGrpd5uNqklAXuR7yOeArz0ZZpHV0aZHGcNBxznMaZExSVZ5DVPW38UPn7Kgse8BnOWeLgnA1hJVp6CmBCtu+hKYt+atBPgRbM8IUINnKKZf/Sk6HeJIJZs662jD8/X93vFi0ZtyV2jEKJpouWw8j4vrGGsaDzTEUcyJgDqZj7tPJptM2L5B3BcFJmkGj2HO3N+LGDarJrVBBSiEjhTgx4NnLiKZnUbMx547mCRg2akk2w=
|
||||||
# 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.6
|
fast_finish: true
|
||||||
- PGVERSION=10
|
include:
|
||||||
|
- env: PGVERSION=9.6
|
||||||
|
- env: PGVERSION=10
|
||||||
|
- env: PGVERSION=11
|
||||||
|
allow_failures:
|
||||||
|
- env: PGVERSION=11
|
||||||
before_install:
|
before_install:
|
||||||
- git clone -b v0.6.4 --depth 1 https://github.com/citusdata/tools.git
|
- git clone -b v0.7.1 --depth 1 https://github.com/citusdata/tools.git
|
||||||
- sudo make -C tools install
|
- sudo make -C tools install
|
||||||
- setup_apt
|
- setup_apt
|
||||||
- curl https://install.citusdata.com/community/deb.sh | sudo bash
|
- curl https://install.citusdata.com/community/deb.sh | sudo bash
|
||||||
|
@ -27,7 +32,12 @@ install:
|
||||||
- install_pg
|
- install_pg
|
||||||
- install_custom_pg
|
- install_custom_pg
|
||||||
# download and install HLL manually, as custom builds won't satisfy deps
|
# download and install HLL manually, as custom builds won't satisfy deps
|
||||||
- apt-get download "postgresql-${PGVERSION}-hll=2.10.2.citus-1" && sudo dpkg --force-confold --force-confdef --force-all -i *hll*.deb
|
# only install if performing non-11 build
|
||||||
|
- |
|
||||||
|
if [ "${PGVERSION}" != "11" ]; then
|
||||||
|
apt-get download "postgresql-${PGVERSION}-hll=2.10.2.citus-1"
|
||||||
|
sudo dpkg --force-confold --force-confdef --force-all -i *hll*.deb
|
||||||
|
fi
|
||||||
before_script: citus_indent --quiet --check
|
before_script: citus_indent --quiet --check
|
||||||
script: CFLAGS=-Werror pg_travis_multi_test check
|
script: CFLAGS=-Werror pg_travis_multi_test check
|
||||||
after_success:
|
after_success:
|
||||||
|
|
|
@ -2017,7 +2017,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.6' -a "$version_num" != '10'; then
|
if test "$version_num" != '9.6' -a "$version_num" != '10' -a "$version_num" != '11'; 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.6' -a "$version_num" != '10'; then
|
if test "$version_num" != '9.6' -a "$version_num" != '10' -a "$version_num" != '11'; 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