test-build

application/octet-stream

Filename: test-build
Type: application/octet-stream
Part: 0
Message: Re: Overhead cost of Serializable Snapshot Isolation
#!/bin/bash

if [ "$1" = "" ]; then
	echo "must specify a build name"
	exit 1
fi

set -ex

rm -rf $HOME/install/$1
git clean -dfx

./configure --prefix=$HOME/install/$1 --enable-depend --enable-debug

make -j10
make -C contrib/pgbench

make check

make install
make -C contrib/pgbench install