mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
We have disabled CircleCI and are using GitHub Actions for automated testing. docs: Changed context from CircleCI to Github Actions and wrote some documentation specific to GH Actions. tools: Replaced env checks for CIRCLECI with GITHUB_ACTION. README: Use GitHub Actions build status badge.
14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# This tests upgrading PostgreSQL
|
|
set -e
|
|
set -x
|
|
|
|
ZULIP_PATH=/home/github/zulip
|
|
|
|
supervisorctl stop all
|
|
"$ZULIP_PATH"/scripts/setup/upgrade-postgresql
|
|
supervisorctl start all
|
|
|
|
echo "Upgrade of PostgreSQL complete!"
|
|
exit 0
|