Bug 1312476 - Update paths for x86 android artifact builds r=sebastian draft
authorGrisha Kruglov <gkruglov@mozilla.com>
Mon, 24 Oct 2016 09:46:21 -0700
changeset 428919 86b30c5e2899e2d15e26199323f3aee0b9211391
parent 428476 215f9686117673a2c914ed207bc7da9bb8d741ad
child 534835 33561fc7c4acf234d78e0d65bd212c710e3ffc44
push id33417
push userbmo:gkruglov@mozilla.com
push dateMon, 24 Oct 2016 16:46:37 +0000
reviewerssebastian
bugs1312476
milestone52.0a1
Bug 1312476 - Update paths for x86 android artifact builds r=sebastian MozReview-Commit-ID: 3NLluk5mU9g
python/mozbuild/mozbuild/artifacts.py
--- a/python/mozbuild/mozbuild/artifacts.py
+++ b/python/mozbuild/mozbuild/artifacts.py
@@ -434,17 +434,17 @@ class WinArtifactJob(ArtifactJob):
 # options.  The keys of this map correspond to entries at
 # https://tools.taskcluster.net/index/artifacts/#gecko.v2.mozilla-central.latest/gecko.v2.mozilla-central.latest
 # The values correpsond to a pair of (<package regex>, <test archive regex>).
 JOB_DETAILS = {
     'android-api-15-opt': (AndroidArtifactJob, ('public/build/target.apk',
                                                 None)),
     'android-api-15-debug': (AndroidArtifactJob, ('public/build/target.apk',
                                                   None)),
-    'android-x86': (AndroidArtifactJob, ('public/build/fennec-(.*)-i386\.apk',
+    'android-x86-opt': (AndroidArtifactJob, ('public/build/target.apk',
                                          None)),
     'linux-opt': (LinuxArtifactJob, ('public/build/firefox-(.*)\.linux-i686\.tar\.bz2',
                                      'public/build/firefox-(.*)\.common\.tests\.zip')),
     'linux-debug': (LinuxArtifactJob, ('public/build/firefox-(.*)\.linux-i686\.tar\.bz2',
                                  'public/build/firefox-(.*)\.common\.tests\.zip')),
     'linux64-opt': (LinuxArtifactJob, ('public/build/firefox-(.*)\.linux-x86_64\.tar\.bz2',
                                        'public/build/firefox-(.*)\.common\.tests\.zip')),
     'linux64-debug': (LinuxArtifactJob, ('public/build/target\.tar\.bz2',
@@ -801,17 +801,17 @@ class Artifacts(object):
         # if MOZ_DEBUG is enabled.
         if self._substs.get('MOZ_DEBUG'):
             target_suffix = '-debug'
         else:
             target_suffix = '-opt'
 
         if self._substs.get('MOZ_BUILD_APP', '') == 'mobile/android':
             if self._substs['ANDROID_CPU_ARCH'] == 'x86':
-                return 'android-x86'
+                return 'android-x86-opt'
             return 'android-api-15' + target_suffix
 
         target_64bit = False
         if self._substs['target_cpu'] == 'x86_64':
             target_64bit = True
 
         if self._defines.get('XP_LINUX', False):
             return ('linux64' if target_64bit else 'linux') + target_suffix