SL-15572 - more sleeps in build.sh

master
Brad Payne (Vir Linden) 2021-07-13 16:19:35 +01:00
parent e0eb9b96f7
commit 3d57b7946a
1 changed files with 6 additions and 1 deletions

View File

@ -449,10 +449,11 @@ then
# Upload additional packages.
for package_id in $additional_packages
do
sleep 240
package=$(installer_$arch "$package_id")
if [ x"$package" != x ]
then
echo "sleeping 240"
sleep 240
python_cmd "$helpers/codeticket.py" addoutput "Installer $package_id" "$package" \
|| fatal "Upload of installer $package_id failed"
else
@ -466,6 +467,8 @@ then
if [ "${RELEASE_CRASH_REPORTING:-}" != "OFF" ]
then
# Upload crash reporter file
echo "sleeping 240"
sleep 240
python_cmd "$helpers/codeticket.py" addoutput "Symbolfile" "$VIEWER_SYMBOL_FILE" \
|| fatal "Upload of symbolfile failed"
fi
@ -474,6 +477,8 @@ then
# *TODO: Make this an upload-extension
if [ -r "$build_dir/llphysicsextensions_package" ]
then
echo "sleeping 240"
sleep 240
llphysicsextensions_package=$(cat $build_dir/llphysicsextensions_package)
python_cmd "$helpers/codeticket.py" addoutput "Physics Extensions Package" "$llphysicsextensions_package" --private \
|| fatal "Upload of physics extensions package failed"