Bug 1277595 - Do not upload symbols for tasks on taskcluster draft
authorAnthony Miyaguchi <amiyaguchi@mozilla.com>
Mon, 18 Jul 2016 18:05:29 -0700
changeset 393503 e0531ed6a8b2e3fc3e7c00d4c56bd09b717382a6
parent 393502 9e015b2b48501fb7cc0afb2e7cef448668af15a9
child 393504 1689925dd467bede680604ea4a065990f928aa74
push id24318
push useramiyaguchi@mozilla.com
push dateWed, 27 Jul 2016 22:48:01 +0000
bugs1277595
milestone50.0a1
Bug 1277595 - Do not upload symbols for tasks on taskcluster Without `export`, the build will attempt to upload symbols. TaskId:QVlEKXKrSlWVJKLVVh2RGg is an example of a build that fails without this path. MozReview-Commit-ID: ITV6e18NWZn
taskcluster/scripts/builder/build-linux.sh
--- a/taskcluster/scripts/builder/build-linux.sh
+++ b/taskcluster/scripts/builder/build-linux.sh
@@ -38,17 +38,17 @@ export MOZ_CRASHREPORTER_NO_REPORT=1
 export MOZ_OBJDIR=obj-firefox
 export TINDERBOX_OUTPUT=1
 
 # use "simple" package names so that they can be hard-coded in the task's
 # extras.locations
 export MOZ_SIMPLE_PACKAGE_NAME=target
 
 # Do not try to upload symbols (see https://bugzilla.mozilla.org/show_bug.cgi?id=1164615)
-MOZ_AUTOMATION_UPLOAD_SYMBOLS=0
+export MOZ_AUTOMATION_UPLOAD_SYMBOLS=0
 
 # Ensure that in tree libraries can be found
 export LIBRARY_PATH=$LIBRARY_PATH:$WORKSPACE/src/obj-firefox:$WORKSPACE/src/gcc/lib64
 
 # test required parameters are supplied
 if [[ -z ${MOZHARNESS_SCRIPT} ]]; then fail "MOZHARNESS_SCRIPT is not set"; fi
 if [[ -z ${MOZHARNESS_CONFIG} ]]; then fail "MOZHARNESS_CONFIG is not set"; fi