Bug 1242374 - set an sdkUrl to avoid interfering with packageUrl; r=bhearsum
authorMike Shal <mshal@mozilla.com>
Tue, 26 Jan 2016 10:04:50 -0500 (2016-01-26)
changeset 4681 34f988f27f103b4fb64d63cd56d28247653bd516
parent 4679 3b001e0b843815854b34edd133c0bbb1695fc1bc
child 4682 97febf14fe8d46244b0ad0d6b2b295c94a7d57ba
push id3932
push usermshal@mozilla.com
push dateTue, 26 Jan 2016 15:05:12 +0000 (2016-01-26)
reviewersbhearsum
bugs1242374
Bug 1242374 - set an sdkUrl to avoid interfering with packageUrl; r=bhearsum
process/factory.py
--- a/process/factory.py
+++ b/process/factory.py
@@ -215,16 +215,18 @@ def parse_make_upload(rc, stdout, stderr
         elif m.endswith('apk') and 'robocop' in m:
             retval['robocopApkUrl'] = m
         elif 'jsshell-' in m and m.endswith('.zip'):
             retval['jsshellUrl'] = m
         elif m.endswith('.complete.mar'):
             retval['completeMarUrl'] = m
         elif m.endswith('.mar') and '.partial.' in m:
             retval['partialMarUrl'] = m
+        elif '.sdk.' in m:
+            retval['sdkUrl'] = m
         elif m.find('geckoview') >= 0:
             pass
         elif m.find('cppunit') >= 0:
             pass
         else:
             retval['packageUrl'] = m
     return retval