Bug 1332911 - Update android-opt artifact test archive filename draft
authorAndrzej Hunt <ahunt@mozilla.com>
Sun, 22 Jan 2017 15:42:37 +0100
changeset 464985 77b9e7bd07d60c96ef3bd0e496a6f08f139d2caa
parent 464978 f80dc9fc34680105b714a49b4704bb843f5f7004
child 543066 2387358bbae24cc4fd2a108c9f30680c2e98dc9a
push id42510
push userahunt@mozilla.com
push dateMon, 23 Jan 2017 15:38:16 +0000
bugs1332911
milestone53.0a1
Bug 1332911 - Update android-opt artifact test archive filename MozReview-Commit-ID: 3xeXGcfsqKn
python/mozbuild/mozbuild/artifacts.py
--- a/python/mozbuild/mozbuild/artifacts.py
+++ b/python/mozbuild/mozbuild/artifacts.py
@@ -434,17 +434,17 @@ class WinArtifactJob(ArtifactJob):
                                  patterns=self.artifact_patterns))
 
 # Keep the keys of this map in sync with the |mach artifact| --job
 # 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, (r'(public/build/fennec-(.*)\.android-arm.apk|public/build/target\.apk)',
-                                                r'public/build/fennec-(.*)\.common\.tests\.zip|public/build/target-(.*)\.common\.tests\.zip')),
+                                                r'public/build/fennec-(.*)\.common\.tests\.zip|public/build/target\.common\.tests\.zip')),
     'android-api-15-debug': (AndroidArtifactJob, (r'public/build/target\.apk',
                                                   r'public/build/target\.common\.tests\.zip')),
     'android-x86-opt': (AndroidArtifactJob, (r'public/build/target\.apk',
                                              r'public/build/target\.common\.tests\.zip')),
     'linux-opt': (LinuxArtifactJob, (r'public/build/target\.tar\.bz2',
                                      r'public/build/target\.common\.tests\.zip')),
     'linux-debug': (LinuxArtifactJob, (r'public/build/target\.tar\.bz2',
                                        r'public/build/target\.common\.tests\.zip')),