summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2021-07-13 16:19:35 +0100
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2021-07-13 16:19:35 +0100
commit3d57b7946a1b432710b2909c8ece16e62e356148 (patch)
tree83521659d741ab554347d76c8ebd1eb74dbd233b /build.sh
parente0eb9b96f7137e1d4ad4f8b7224cb8b6145ad77c (diff)
SL-15572 - more sleeps in build.sh
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 89e4492671..491fdd6b94 100755
--- a/build.sh
+++ b/build.sh
@@ -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"