Skip to content

Commit

Permalink
Bump default PG version to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
df7cb committed May 17, 2022
1 parent 5fd12d4 commit dd32872
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions do
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ set -eux

export PGDATABASE=postgres

for PGVERSION in ${*:-10 11 12 9.6 9.5}; do
for PGVERSION in ${*:-14 13 12 11 10 9.6 9.5}; do
echo
echo "### $PGVERSION ###"
PG_CONFIG=/usr/lib/postgresql/$PGVERSION/bin/pg_config
export PGCLUSTER="$PGVERSION/main"
export PGPORT="54${PGVERSION/./}"
[ "$PGVERSION" = "11" ] && unset PGPORT # default version
[ "$PGVERSION" = "14" ] && unset PGPORT # default version

make clean
make PG_CONFIG=$PG_CONFIG PROFILE="-Werror"
Expand Down

0 comments on commit dd32872

Please sign in to comment.