mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 05:07:02 +00:00
* set -e and fix all the scripts * add source utils to finalize_vm script * change xcode version in postbuild script * fix for softwareupdates and for xcode version
26 lines
662 B
Bash
26 lines
662 B
Bash
#!/bin/bash -e -o pipefail
|
|
|
|
#Install latest version of postgresql
|
|
brew install postgres
|
|
|
|
#Service postgresql should be started before use.
|
|
brew services start postgresql
|
|
|
|
#Verify PostgreSQL is ready for accept incoming connections
|
|
echo "Check PostgreSQL service is running"
|
|
i=10
|
|
COMMAND='pg_isready'
|
|
while [ $i -gt 0 ]; do
|
|
echo "Check PostgreSQL service status"
|
|
eval $COMMAND && break
|
|
((i--))
|
|
if [ $i == 0 ]; then
|
|
echo "PostgreSQL service not ready, all attempts exhausted"
|
|
exit 1
|
|
fi
|
|
echo "PostgreSQL service not ready, wait 10 more sec, attempts left: $i"
|
|
sleep 10
|
|
done
|
|
|
|
#Stop postgresql
|
|
brew services stop postgresql |