setup-pgsql.sh 236 B

12345678
  1. #!/bin/sh
  2. set -ev
  3. # PostgreSQL tests currently don't work on some architectures.
  4. if test -z "${ARM64}${S390X}"; then
  5. psql -c "ALTER USER postgres PASSWORD 'postgres';" -U postgres
  6. psql -c "CREATE DATABASE test;" -U postgres
  7. fi