Skip to content

Instantly share code, notes, and snippets.

@decibel
Created March 23, 2016 00:23
Show Gist options
  • Save decibel/42f9a449b2bdfbb24cf5 to your computer and use it in GitHub Desktop.
Save decibel/42f9a449b2bdfbb24cf5 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Based on https://gist.github.com/petere/6023944
set -eux
sudo apt-get update
packages="python-setuptools postgresql-$PGVERSION postgresql-server-dev-$PGVERSION postgresql-common"
# bug: http://www.postgresql.org/message-id/20130508192711.GA9243@msgid.df7cb.de
sudo update-alternatives --remove-all postmaster.1.gz
# stop all existing instances (because of https://github.com/travis-ci/travis-cookbooks/pull/221)
sudo service postgresql stop
# and make sure they don't come back
echo 'exit 0' | sudo tee /etc/init.d/postgresql
sudo chmod a+x /etc/init.d/postgresql
sudo apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install $packages
sudo easy_install pgxnclient
PGPORT=55435
sudo pg_createcluster --start $PGVERSION test -p $PGPORT -- -A trust
# TODO: have base.mk support dynamic sudo
sudo PGPORT=$PGPORT PGUSER=postgres PG_CONFIG=/usr/lib/postgresql/$PGVERSION/bin/pg_config make test
[ ! -e test/regression.diffs ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment