mirror of
https://github.com/php/php-src.git
synced 2025-08-16 14:08:47 +02:00
8 lines
236 B
Bash
Executable file
8 lines
236 B
Bash
Executable file
#!/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
|