summaryrefslogtreecommitdiff
path: root/travis/setup-pgsql.sh
blob: 3fea8f70b42373437292e04d39704af61862381d (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
set -ev

# PostgreSQL tests currently don't work on some architectures.
if test -z "${ARM64}${S390X}"; then
    psql -c "ALTER USER postgres PASSWORD 'postgres';" -U postgres
    psql -c "CREATE DATABASE test;" -U postgres
fi