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-06-03 21:07:33 +02:00
|
|
|
tools/provision --build-release-tarball-only || {
|
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-06-03 21:07:33 +02:00
|
|
|
tools/provision --build-release-tarball-only
|
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
|
|
|
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
|
2015-10-15 01:47:42 +02:00
|
|
|
|
2020-07-16 21:17:48 +02:00
|
|
|
# Move all the required artifacts to /tmp/production-build
|
|
|
|
# that will be later sent down to downstream install jobs.
|
|
|
|
mkdir /tmp/production-build
|
|
|
|
mv /tmp/tmp.*/zulip-server-test.tar.gz /tmp/production-build
|
2020-06-27 01:12:44 +02:00
|
|
|
cp -a \
|
2020-07-04 13:17:27 +02:00
|
|
|
tools/ci/success-http-headers.template.txt \
|
2020-06-27 01:12:44 +02:00
|
|
|
tools/ci/production-install \
|
2020-06-27 01:17:52 +02:00
|
|
|
tools/ci/production-verify \
|
2020-06-27 01:26:18 +02:00
|
|
|
tools/ci/production-upgrade-pg \
|
2020-06-27 01:12:44 +02:00
|
|
|
tools/ci/production-extract-tarball \
|
2020-08-03 19:58:56 +02:00
|
|
|
package.json yarn.lock \
|
2020-06-27 01:12:44 +02:00
|
|
|
\
|
2020-07-16 21:17:48 +02:00
|
|
|
/tmp/production-build
|