mirror of https://github.com/zulip/zulip.git
14 lines
241 B
Plaintext
14 lines
241 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
# This tests upgrading PostgreSQL
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
ZULIP_PATH=/home/circleci/zulip
|
||
|
|
||
|
supervisorctl stop all
|
||
|
"$ZULIP_PATH"/scripts/setup/upgrade-postgres
|
||
|
supervisorctl start all
|
||
|
|
||
|
echo "Upgrade of PostgreSQL complete!"
|
||
|
exit 0
|