2018-12-18 02:08:53 +01:00
|
|
|
#!/usr/bin/env bash
|
2017-06-06 03:15:17 +02:00
|
|
|
# In short, this provisions a Zulip development environment and then
|
|
|
|
# builds a Zulip release tarball (the same way we build them for an
|
|
|
|
# actual release). The actual test job will then install that.
|
2020-04-20 16:39:21 +02:00
|
|
|
|
2015-10-15 01:47:42 +02:00
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
2017-06-13 21:54:52 +02:00
|
|
|
# Provisioning may fail due to many issues but most of the times a network
|
|
|
|
# connection issue is the reason. So we are going to retry entire provisioning
|
|
|
|
# once again if that fixes our problem.
|
2020-04-20 16:54:20 +02:00
|
|
|
tools/provision --production-test-suite || {
|
2019-07-19 03:36:59 +02:00
|
|
|
ret=$?
|
|
|
|
if [ "$ret" = 1 ]; then
|
|
|
|
echo "\`provision\`: Something went wrong with the provisioning, might be a network issue, Retrying to provision..."
|
2020-04-20 16:54:20 +02:00
|
|
|
tools/provision --production-test-suite
|
2019-07-19 03:36:59 +02:00
|
|
|
else
|
|
|
|
echo "\`provision\`: Something REALLY BAD went wrong with the provisioning, not retrying."
|
|
|
|
exit "$ret"
|
|
|
|
fi
|
|
|
|
}
|
2017-01-14 11:19:26 +01:00
|
|
|
|
2018-12-10 08:05:16 +01:00
|
|
|
cp -a tools/ci/success-http-headers.txt ~/
|
|
|
|
source tools/ci/activate-venv
|
2016-11-22 07:00:12 +01:00
|
|
|
|
2020-04-21 22:51:04 +02:00
|
|
|
if ! ./tools/build-release-tarball test; then
|
2016-07-13 03:12:03 +02:00
|
|
|
echo "Attempting to output failure logging data"
|
2016-12-01 19:47:40 +01:00
|
|
|
cat /tmp/tmp.*/update-prod-static.log || true
|
2016-07-13 03:12:03 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
2020-04-23 07:56:57 +02:00
|
|
|
mv /tmp/tmp.*/zulip-server-test.tar.gz /tmp/
|
2016-12-08 08:06:24 +01:00
|
|
|
|
2015-10-15 01:47:42 +02:00
|
|
|
# Shut down all services so that restarting postgres and rebuilding
|
|
|
|
# the postgres database to match the prod installation setup will work.
|
|
|
|
sudo supervisorctl stop all
|
|
|
|
|
|
|
|
# Drop any open connections to the development postgres installation.
|
|
|
|
sudo "$(dirname "$0")/../../scripts/setup/terminate-psql-sessions" postgres zulip zulip_base
|
|
|
|
|
|
|
|
# Remove and recreate the postgres database
|
2020-04-20 17:54:54 +02:00
|
|
|
sudo pg_ctlcluster 10 main stop
|
|
|
|
sudo pg_dropcluster 10 main
|
|
|
|
sudo rm -rf /etc/postgresql/10/main /var/lib/postgresql/10/main
|
|
|
|
sudo pg_createcluster 10 main
|