From: Nikita Popov Date: Wed, 10 Jun 2020 11:04:14 +0000 (+0200) Subject: Explicitly start postgres on azure X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1905cf06564198da5831c6b3bc7550e6b96c2285;p=php Explicitly start postgres on azure Seems to be necessary now... --- diff --git a/azure/job.yml b/azure/job.yml index 80ffb35e86..a262d33f00 100644 --- a/azure/job.yml +++ b/azure/job.yml @@ -20,6 +20,7 @@ jobs: - 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;"