mirror of https://github.com/jackc/pgx.git
44 lines
1.8 KiB
Bash
Executable File
44 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
if [[ "${PGVERSION-}" =~ ^[0-9.]+$ ]]
|
|
then
|
|
sudo apt-get remove -y --purge postgresql libpq-dev libpq5 postgresql-client-common postgresql-common
|
|
sudo rm -rf /var/lib/postgresql
|
|
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
|
sudo sh -c "echo deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main $PGVERSION >> /etc/apt/sources.list.d/postgresql.list"
|
|
sudo apt-get update -qq
|
|
sudo apt-get -y -o Dpkg::Options::=--force-confdef -o Dpkg::Options::="--force-confnew" install postgresql-$PGVERSION postgresql-server-dev-$PGVERSION postgresql-contrib-$PGVERSION
|
|
sudo cp testsetup/pg_hba.conf /etc/postgresql/$PGVERSION/main/pg_hba.conf
|
|
sudo chmod 777 /etc/postgresql/$PGVERSION/main/postgresql.conf
|
|
if $(dpkg --compare-versions $PGVERSION ge 9.6) ; then
|
|
echo "wal_level='logical'" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
|
|
echo "max_wal_senders=5" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
|
|
echo "max_replication_slots=5" >> /etc/postgresql/$PGVERSION/main/postgresql.conf
|
|
fi
|
|
sudo /etc/init.d/postgresql restart
|
|
|
|
createdb -U postgres pgx_test
|
|
psql -U postgres -f testsetup/postgresql_setup.sql pgx_test
|
|
fi
|
|
|
|
if [[ "${PGVERSION-}" =~ ^cockroach ]]
|
|
then
|
|
wget -qO- https://binaries.cockroachdb.com/cockroach-v22.1.8.linux-amd64.tgz | tar xvz
|
|
sudo mv cockroach-v22.1.8.linux-amd64/cockroach /usr/local/bin/
|
|
cockroach start-single-node --insecure --background --listen-addr=localhost
|
|
cockroach sql --insecure -e 'create database pgx_test'
|
|
fi
|
|
|
|
if [ "${CRATEVERSION-}" != "" ]
|
|
then
|
|
docker run \
|
|
-p "6543:5432" \
|
|
-d \
|
|
crate:"$CRATEVERSION" \
|
|
crate \
|
|
-Cnetwork.host=0.0.0.0 \
|
|
-Ctransport.host=localhost \
|
|
-Clicense.enterprise=false
|
|
fi
|