mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
10 lines
321 B
YAML
10 lines
321 B
YAML
steps:
|
|
- script: |
|
|
set -e
|
|
sudo service mysql start
|
|
sudo service postgresql start
|
|
mysql -uroot -proot -e "CREATE DATABASE IF NOT EXISTS test"
|
|
sudo -u postgres psql -c "ALTER USER postgres PASSWORD 'postgres';"
|
|
sudo -u postgres psql -c "CREATE DATABASE test;"
|
|
displayName: 'Setup'
|