mirror of
https://github.com/php/php-src.git
synced 2024-12-18 22:41:20 +08:00
bd379df48c
We need to install a number of additional packages that are installed by default on the AMD64 workers. We also have to manually set up the MySQL user. For now we don't set up Postgres -- if anyone wants to figure that out, it would be great ;) Log redirections in compile.sh are removed, because /dev/stdout is not accessible. We don't see to use this anyway.
7 lines
168 B
Bash
Executable File
7 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
echo '
|
|
<?php $conn_str .= " user=postgres"; ?>' >> "./ext/pgsql/tests/config.inc"
|
|
if [ -z "$ARM64" ]; then
|
|
psql -c 'create database test;' -U postgres
|
|
fi
|