Граф коммитов

2611 Коммитов

Автор SHA1 Сообщение Дата
Marco Castelluccio 6120ea8814 Bug 1493943 - Don't download grcov twice on Windows. r=jmaher
DONTBUILD as this is ccov only.

--HG--
extra : rebase_source : a6ecace72b2db08586ea42be66403de47efa79f7
2018-09-26 15:23:19 +01:00
Tom Prince bced66e3b0 Bug 1493997: [mozharness] Ensure that `MOZ_TOOLCHAINS` isn't specified if `mach` isn't available; r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D6800

--HG--
extra : moz-landing-system : lando
2018-09-25 18:26:10 +00:00
Geoff Brown 3d58a9d22a Bug 1482413 - Improve diagnostics for test-verify and per-test coverage; r=me,a=test-only 2018-09-24 17:07:38 -06:00
Bob Clary 0c8d65eb00 Bug 1492601 - Use MachCommandCondition.is_firefox_or_android, r=ahal. 2018-09-23 15:08:56 -07:00
Geoff Brown 36c45bba54 Bug 1492632 - Ensure correct installation requirements for Android per-test suites; r=bc 2018-09-21 13:23:48 -06:00
Tom Prince 59c3755348 No bug: [mozharness] Remove some no-op code that just calls a method from a parent class; r=me
This addresses the review comment from https://phabricator.services.mozilla.com/D6171

--HG--
extra : rebase_source : af26bfda433367e78115930be187528a64bbde91
extra : amend_source : 6ab77c4829ebdcb4701d76e5410790a0f760882f
2018-09-21 10:53:05 -06:00
Geoff Brown dcaf3b3e80 Bug 1492242 - Use mozdevice to access adb in mozharness AndroidMixin; r=bc 2018-09-21 08:09:20 -06:00
Nick Thomas 296ae7df09 Bug 1493056 - check for mar existence before chmoding it, and remove deprecated action, r=aki
Differential Revision: https://phabricator.services.mozilla.com/D6460

--HG--
extra : moz-landing-system : lando
2018-09-21 03:59:45 +00:00
Bogdan Tara e7c653959c Merge inbound to mozilla-central. a=merge 2018-09-20 00:58:18 +03:00
Tom Prince cc905dafe7 No bug: [mozhanress]: Remove set_/query_property from mozharness; r=Callek
The last place any properties were written out was removed in
https://phabricator.services.mozilla.com/D6170
Looking at the remaining uses, properties get set and modified but not used
anywhere.

Differential Revision: https://phabricator.services.mozilla.com/D6171

--HG--
extra : moz-landing-system : lando
2018-09-19 18:54:51 +00:00
Tom Prince a7c3a25c9b No bug: [mozharness] Remove references to balrog in mozharness; r=bhearsum
There are two places where it is references:

- The build process generates a `balrog_props.json` that is not used anywhere.
  (This is currently generated as part of beetmover).
- The merge day scripts have unused support for locking some rules.

Differential Revision: https://phabricator.services.mozilla.com/D6170

--HG--
extra : moz-landing-system : lando
2018-09-19 18:54:44 +00:00
Bob Clary 85dcd1534f Bug 1491424 - Fix CodeCoverageMixin, SingleTestMixin initialization, r=gbrown.
CodeCoverageMixin's __init__ method does not have a compatible signature nor does it
call its super with a compatible signature.

CodeCoverageMixin inherits from SingleTestMixin. SingleTextMixin's __init__ method
does not have a compatible signature nor does it call super.

This patch fixes these issues by using the "standard" __init__(self, **kwargs)
signature and making sure both Mixins call it properly.
2018-09-19 10:35:40 -07:00
Bob Clary 60e22167a6 Bug 1491424 - Define AndroidMixin as new class Mixin with proper initialization, r=gbrown.
As defined initially, AndroidMixin was an old-style class not inheriting from object. This
prevents it from being properly called via super() which requires it be a new style class
and also requires that its __init__ method's signature conform to the signatures of the other
mixin's __init_methods.

AndroidMixin originally detected the adb_path using BaseScript's query_exe which required that
the previous initializers complete prior to the call which is not possible. To work around the
problem, adb_path was turned into a property whose value was not looked up until requested.
The intent was to defer the need to reference attributes which had not yet been initialized.

BaseScript's __init__ iterates over the attributes of its object determining if listeners should
be attached for the methods. This can cause problems in mixins which define properties which
require a fully initialized object since accessing the property will invoke the method before it
is ready.

This is worked around in this patch by catching AttributeError in adb_path and ignoring it. The
proper fix however might be to do this catch in BaseScript's __init__ where item = getattr(self, k)
is called.

These changes are not sufficient in of themselves. The additional followup patch to CoverCoverageMixin
and SingleTestMixin are also required for AndroidMixin to be properly initialized.

Since Raptor currently initializes AndroidMix without explicitly giving a device serial number,
mozrunner's android_device.py is modified to export the detected device serial number into the
environment as DEVICE_SERIAL. This allows AndroidMixin to obtain the device's serial number.
2018-09-19 10:35:39 -07:00
Ted Mielczarek 412addf8a0 bug 1490325 - make mozharness BuildScript.ensure_upload_path part of preflight_build. r=firefox-build-system-reviewers,nalexander
Currently the BuildScript mozharness base class has an `ensure_upload_path`
action that we run after the build. This patch changes it to no longer be
an action, and instead simply run as part of `preflight_build` so that the
artifact directory will be created before starting the build. This makes
it more straightforward to write things like log files directly into this
directory without worrying about whether it exists.

Differential Revision: https://phabricator.services.mozilla.com/D6186

--HG--
extra : moz-landing-system : lando
2018-09-18 19:50:50 +00:00
Rob Wood b55f0c48d8 Bug 1491355 - Fix binary argument when running raptor on local geckoview android r=bc
Differential Revision: https://phabricator.services.mozilla.com/D5902

--HG--
extra : moz-landing-system : lando
2018-09-14 21:08:11 +00:00
Gregory Mierzwinski 6bb72e3c1c Bug 1491390 - When searching for baseline coverage tests, only look at the test name. r=jmaher
This patch fixes an issue where a suite was being found in the full path to the test which led to the baseline coverage tests being considered on a per-suite basis (like browser-chrome), when it should be on a per-file-extension basis for '.html' files. This is fixed by only considering the test name and excluding the full path to it.

Differential Revision: https://phabricator.services.mozilla.com/D5890

--HG--
extra : moz-landing-system : lando
2018-09-14 18:57:16 +00:00
shindli 0c0c6fddd8 Backed out changeset aae4f349fa58 (bug 1479503) per developer's request on IRC a=backout
--HG--
rename : taskcluster/docker/static-analysis-build/Dockerfile => taskcluster/docker/infer-build/Dockerfile
2018-09-14 16:35:23 +03:00
Robert Bartlensky af9de513f7 Bug 1479503: Check infer in ./mach static-analysis autotest. r=nalexander
Adds infer to ./mach static-analysis autotest.

Differential Revision: https://phabricator.services.mozilla.com/D5692

--HG--
rename : taskcluster/docker/infer-build/Dockerfile => taskcluster/docker/static-analysis-build/Dockerfile
extra : moz-landing-system : lando
2018-09-13 20:58:03 +00:00
Noemi Erli a548d10a8c Merge inbound to mozilla-central. a=merge 2018-09-14 01:01:37 +03:00
Jim Chen 9a76b4da63 Bug 1480834 - 6. Add Android x86-64 configs; r=nalexander
Add config files for building Android for x86-64.

Differential Revision: https://phabricator.services.mozilla.com/D5603
2018-09-13 12:09:26 -04:00
Ben Hearsum 715bd48218 Bug 1490119 - Set override_certs in update verify config creator. r=nthomas
Imports the changes to the UpdateVerifyConfig class, and sets --override-certs for staging releases.

Differential Revision: https://phabricator.services.mozilla.com/D5705

--HG--
extra : moz-landing-system : lando
2018-09-13 12:31:08 +00:00
Daniel Varga 8eac4fe0d9 Merge mozilla-central to mozilla-inbound 2018-09-13 05:50:34 +03:00
Mike Hommey 0a7e03bf20 Bug 1490542 - Remove the Linux LTO builds. r=froydnj
Now that Linux PGO builds also do LTO and all the Linux builds use
clang, there's not much use for separate LTO builds.

Differential Revision: https://phabricator.services.mozilla.com/D5632
2018-09-13 11:23:24 +09:00
Tom Prince e335019a90 Bug 1473416: [mozharness] Use in-tree mobile sdk secrets on try; r=nalexander
These are used if MOZ_UPDATE_CHANNEL is set, which isn't normally set on try.
However, when doing staging releases, that variable may be set. Populate the
mobile secrets with the default key that would be used without
MOZ_UPDATE_CHANNEL set on level-1 trees.

Differential Revision: https://phabricator.services.mozilla.com/D5599

--HG--
extra : moz-landing-system : lando
2018-09-12 18:29:16 +00:00
Rob Wood a065e64b54 Bug 1490717 - Fix raptor desktop tests on google chromium r=gbrown
Differential Revision: https://phabricator.services.mozilla.com/D5695

--HG--
extra : moz-landing-system : lando
2018-09-12 19:15:04 +00:00
Csoregi Natalia 7ed619163e Backed out changeset 081d8311be59 (bug 1479503) for build bustage - java not found. CLOSED TREE
--HG--
rename : taskcluster/docker/static-analysis-build/Dockerfile => taskcluster/docker/infer-build/Dockerfile
2018-09-12 13:16:06 +03:00
Robert Bartlensky b4ebd25931 Bug 1479503: Check infer in ./mach static-analysis autotest. r=nalexander
Adds infer to ./mach static-analysis autotest.

Differential Revision: https://phabricator.services.mozilla.com/D4547

--HG--
rename : taskcluster/docker/infer-build/Dockerfile => taskcluster/docker/static-analysis-build/Dockerfile
extra : moz-landing-system : lando
2018-09-12 09:34:30 +00:00
Bogdan Tara a23c3959b6 Merge inbound to mozilla-central. a=merge 2018-09-12 06:22:14 +03:00
Tom Ritter d8f3b49815 Bug 1465800 Create an x64 MinGW-Clang Browser Build job r=froydnj
MozReview-Commit-ID: 7TSCY52wTpR

Differential Revision: https://phabricator.services.mozilla.com/D4553

--HG--
extra : moz-landing-system : lando
2018-09-07 16:47:33 +00:00
Geoff Brown e5620fec3e Bug 1472298 - Add geckoview installation and android diagnostics to raptor; r=bc,rwood 2018-09-11 14:17:47 -04:00
Bob Clary 6089bedddf Bug 1472298 - add raptor-speedometer-geckoview for android-hw-g5 test platforms, r=gbrown,rwood.
Bug https://bugzilla.mozilla.org/show_bug.cgi?id=1482344 added workdir to the test_description_schema but
did not make it optinally_keyed_by test-platform. Since the Bitbar tests use different Docker images with
different layouts, we need the ability to set the workdir by test-platorm.
2018-09-11 14:17:46 -04:00
Rob Lemley e1efc2daaf Bug 1489355 - Windows installer build fixes r=Callek
Bug 1484264 made changes to how the repackage tasks is configured.
The package-name field was hard-coded to "firefox". This field is later
used to build the Windows installer, and Thunderbird requires that it
be set to "thunderbird" or the build fails.

This patch changes package-name to be a templated field like the others.

Differential Revision: https://phabricator.services.mozilla.com/D5222

--HG--
extra : moz-landing-system : lando
2018-09-07 17:51:02 +00:00
Tudor-Gabriel Vîjială baf73f821d Bug 1475256 - Download and extract app classfiles, not only geckoview ones. r=marco
We collect the classfiles from app and geckoview during the build task, but
before this patch we didn't use the app classfiles.

Depends on D4146

Differential Revision: https://phabricator.services.mozilla.com/D5167

--HG--
extra : moz-landing-system : lando
2018-09-06 17:12:54 +00:00
Tudor-Gabriel Vîjială 0f2ee78ad6 Bug 1475256 - Turn archive-geckoview-coverage-artifacts into archive-coverage-artifacts. r=nalexander
Rename the command and extend it to also archive Fennec class files into
another artifact, target.app_classfiles.zip.

Depends on D4142

Differential Revision: https://phabricator.services.mozilla.com/D4143

--HG--
extra : moz-landing-system : lando
2018-09-06 17:00:17 +00:00
Tudor-Gabriel Vîjială 48c6ba440f Bug 1475256 - Refactor CodeCoverageMixin to pass --java-coverage-output-dir instead of a file path. r=gbrown,marco
Differential Revision: https://phabricator.services.mozilla.com/D4142

--HG--
extra : moz-landing-system : lando
2018-09-06 16:59:57 +00:00
Bob Clary 50db179805 Bug 1486899 - Do not use virtualenv_options.append('--always-copy') on Redhat derived distros, r=jlund,ahal. 2018-09-02 08:08:46 -07:00
Jesse Schwartzentruber f832b4022e Bug 1475573 - Create --enable-fuzzing debug build job for Android x86 firefox. r=nalexander,froydnj
Differential Revision: https://phabricator.services.mozilla.com/D2428

--HG--
extra : moz-landing-system : lando
2018-08-31 03:35:20 +00:00
Geoff Brown 9a010bd81a Bug 1484063 - Use correct tooltool cache location for Android tests; r=dustin 2018-08-29 13:17:12 -06:00
Tom Prince 38c55c9a6d Bug 1484264: [mozharness] Move repacakge config from mozharness to taskcluster; r=Callek
Differential Revision: https://phabricator.services.mozilla.com/D3624

--HG--
extra : rebase_source : b97304799f7c192cef73434a3973f71d52e1792f
extra : histedit_source : 19fb857824f51ca4dc7e551c82ddaf9a769c4db8
2018-08-17 09:40:57 -06:00
Mike Hommey 357a8bb20c Bug 1486654 - Enable static analysis on all Linux CI builds. r=ted
And turn off separate static analysis build tasks.
2018-08-29 13:55:24 +09:00
Dorel Luca 544b61c613 Backed out changeset 692efe8acba9 (bug 1486654) for wd failures on /builds/worker/workspace/build/tests/bin/geckodriver 2018-08-29 05:16:55 +03:00
Dorel Luca 2fc9d13cc4 Backed out changeset ac43fbec9205 (bug 1486654) for wd failures on builds/worker/workspace/build/tests/bin/geckodriver 2018-08-29 05:15:09 +03:00
Raymond Forbes da273b6d26 Bug 1481730 - Create non asan fuzzing coverage build. r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D4032
2018-08-29 10:39:15 +09:00
Mike Hommey 6103f33795 Fixup for bug 1486654 for static-analysis-autotest bustage. r=me
Restore the mozharness config for static-analysis-autotest.
2018-08-29 08:33:39 +09:00
Mike Hommey 2ef817ea52 Bug 1486654 - Enable static analysis on all Linux CI builds. r=ted
And turn off separate static analysis build tasks.
2018-08-29 08:02:06 +09:00
Geoff Brown 541199cdc0 Bug 1484225 - Verify web-platform tests in the mozilla sub-directory also; r=jmaher 2018-08-27 07:19:01 -06:00
Tom Prince 5b57b42215 Bug 1484012: [mozharness] Use fetch-content to download inputs in repackage tasks; r=Callek
Differential Revision: https://phabricator.services.mozilla.com/D3559

--HG--
extra : rebase_source : c910810629d16dbf507241fc609f3955afcf50e8
2018-08-15 15:12:33 -06:00
Tom Prince c60045308b Bug 1484012: [mozharness] Hard-code repackage input/output directories, since they don't vary meaningfully; r=Callek
Differential Revision: https://phabricator.services.mozilla.com/D3558

--HG--
extra : rebase_source : d70cd0f390cee6b1561869edbe7ca49c469bf065
2018-08-07 11:53:00 -06:00
Tom Prince 6701e41a4c Bug 1484012: [fetch-content] Add an option to not unpack downloaded artifacts; r=gps
Differential Revision: https://phabricator.services.mozilla.com/D3554

--HG--
extra : rebase_source : 58bba31bd921d29d4a40ad8d9ba09c4c7ac1f8dc
2018-08-15 15:16:49 -06:00
Tom Prince 43c8cdcaae Bug 1484012: [fetch-content] Pass `MOZ_FETCHES` as json; r=gps,ahal
Rather than trying to parse strings, just pass a json blob. This will allow us
to easily do things like mark artifacts to be left unextracted.

Differential Revision: https://phabricator.services.mozilla.com/D3553

--HG--
extra : rebase_source : 4e762c65d1c9f13361d5bae2e4608ba09bb39a91
2018-08-17 10:37:21 -06:00
Lifan Zeng 5eecd79002 Bug 1446923 - Remove Some Old References to Chrome-Metro r=jlund
Differential Revision: https://phabricator.services.mozilla.com/D3223

--HG--
extra : moz-landing-system : lando
2018-08-23 23:24:44 +00:00
Bogdan Crisan 04b7de5e83 Bug 1476741 - Migrate all users of pypi to MDC1 pypi. r=nthomas
--HG--
extra : rebase_source : e860374c4eb6d783a784c1f8c0e6600c222fadd8
2018-08-23 03:32:13 +03:00
Ionut Goldan cdc30659e3 Bug 1411304 - lowerIsBetter not true for sccache hit rate r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D3959

--HG--
extra : moz-landing-system : lando
2018-08-22 09:54:41 +00:00
Michael Kaply 69a2437c19 Bug 1479857 - Enable Autoconfig sandbox for Talos. r=RyanVM
Differential Revision: https://phabricator.services.mozilla.com/D3907

--HG--
extra : moz-landing-system : lando
2018-08-21 17:41:46 +00:00
Andrew Halberstadt 76da0cced6 Bug 1482344 - [raptor] Fix fetch tasks for native-engine mozharness_test based tasks, r=jmaher
This unbreaks some tier 3 raptor tasks. There are a few fixes rolled together here:
1) Stop overwriting the 'env' in mozharness_test.py's 'native-engine' implementation
2) Set the workdir to /home/cltbld (which makes sure the fetches are downloaded to there)
3) Download the fetches via mozharness in the 'raptor' script (since they don't use run-task anymore)

Depends on D3651

Differential Revision: https://phabricator.services.mozilla.com/D3652

--HG--
extra : moz-landing-system : lando
2018-08-20 14:04:57 +00:00
Andrew Halberstadt 110c04d107 Bug 1482344 - [mozharness] Refactor codecoverage fetch downloading into a standalone mixin, r=tvijiala
We need to grab fetches from several place in mozharness, this creates a
dedicated mixin that can be used from anywhere. If the 'fetch-content' script
is detected that will be used, otherwise we download the fetches manually.

Differential Revision: https://phabricator.services.mozilla.com/D3651

--HG--
extra : moz-landing-system : lando
2018-08-20 14:04:41 +00:00
Daniel Varga 707a0b3f74 Merge mozilla-inbound to mozilla-central. a=merge 2018-08-18 00:53:04 +03:00
Rob Wood eeb6464d68 Bug 1480841 - Raptor support for running speedometer on geckoview r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D3446

--HG--
extra : moz-landing-system : lando
2018-08-17 18:06:22 +00:00
Geoff Brown 12eb64ca79 Bug 1482413 - More mozharness logging updates for test-verify; r=me,a=test-only 2018-08-17 09:21:33 -06:00
Geoff Brown b70a1556ca Bug 1482957 - Download minidump_stackwalk in android-hw tests; r=bc
The script was setting minidump_stackwalk_path, signalling that minidump_stackwalk
is expected to be found pre-installed at that location. When the path is not set,
the executable is downloaded.
2018-08-17 09:21:31 -06:00
Tiberius Oros 2010f3a375 Merge autoland to mozilla-central. a=merge 2018-08-17 00:31:31 +03:00
Dorel Luca 6e90fcf6e3 Backed out changeset d602a2f69ff8 (bug 1475573) on request from truber. a=backout 2018-08-16 17:49:01 +03:00
Geoff Brown bec136999a Bug 1483421 - Enable more test suites for Android test-verify; r=jmaher 2018-08-15 12:54:06 -06:00
Tom Prince 871fb353ad No bug: Don't generate trailing whitespace in `l10n-changesets.json`; r=aki
Differential Revision: https://phabricator.services.mozilla.com/D1536

--HG--
extra : moz-landing-system : lando
2018-06-04 18:04:39 +00:00
Geoff Brown 3ee60bd876 Bug 1482413 - Improve mozharness diagnostics in per-test runs, especially for TV-bf; r=jmaher 2018-08-10 10:22:04 -06:00
Tom Prince bd8b928c50 No bug: [mozharness] Remove no-op code block in repackage code. r=Callek
Differential Revision: https://phabricator.services.mozilla.com/D3528

--HG--
extra : moz-landing-system : lando
2018-08-16 16:59:59 +00:00
Noemi Erli be6ab34c54 Merge mozilla-central to inbound. a=merge CLOSED TREE
--HG--
extra : rebase_source : 691b5b30b6c3b2ddece605c045ad913e466fdbab
2018-08-10 00:35:58 +03:00
Noemi Erli de9e45a850 Merge inbound to mozilla-central. a=merge 2018-08-10 00:31:09 +03:00
David Heiberg c9661e61a3 Bug 1476661 - Ensure H2 dependencies are packaged alongside wptserve where needed, r=jgraham
MozReview-Commit-ID: 5tbXeHsvNI5
2018-08-09 11:38:37 +01:00
Tudor-Gabriel Vîjială ecb0b4b248 Bug 1480120 - Cleanup reftest, jsreftest and wpt file paths in per-test coverage data. r=gbrown,marco
MozReview-Commit-ID: KJtYSk18L2W

--HG--
extra : rebase_source : 7027527833fb1d1a21017f89cdcc9c9768022689
2018-08-02 17:39:21 +01:00
Justin Wood 04889ad4f9 Bug 1463749 - Support checksum .beet files having duplicate content, as long as sha's match. r=mtabara
Differential Revision: https://phabricator.services.mozilla.com/D2756

--HG--
extra : rebase_source : dfc6f34054afea3bc19355f2fba0fba2eaf2c9eb
2018-08-04 21:10:51 -04:00
Justin Wood 856eae15ac Bug 1474469 - Make sure nightly-l10n failures are properly reported. r=tomprince
Differential Revision: https://phabricator.services.mozilla.com/D2040

--HG--
extra : moz-landing-system : lando
2018-08-07 20:58:32 +00:00
Jesse Schwartzentruber abc4b27cb4 Bug 1475573 - Create --enable-fuzzing debug build job for Android x86 firefox. r=nalexander,froydnj
Differential Revision: https://phabricator.services.mozilla.com/D2428

--HG--
extra : moz-landing-system : lando
2018-08-07 17:53:57 +00:00
Brindusan Cristian 381e833a9d Merge mozilla-central to inbound. a=merge CLOSED TREE 2018-08-08 00:58:40 +03:00
Brindusan Cristian f8555a213f Merge inbound to mozilla-central. a=merge 2018-08-08 00:51:43 +03:00
Aaron Klotz 6bcdcdbc35 Bug 1480911: Fix mozharness to handle unicode environment variables when run locally on Windows; r=aki
--HG--
extra : amend_source : 355e02634c851d6b9331101c770d3529d70aa603
2018-08-03 13:25:25 -06:00
Johan Lorenzo 6f0f3e1d46 Bug 1481240 - Let mozharness/configs/merge_day/bump_esr.py bump esr60 (instead of esr52) r=tomprince
Let mozharness/configs/merge_day/bump_esr.py bump esr60 (instead of esr52)

Differential Revision: https://phabricator.services.mozilla.com/D2787

--HG--
extra : moz-landing-system : lando
2018-08-07 15:07:11 +00:00
Geoff Brown aff5a6af05 Bug 1460411 - Add taskcluster config support for Android x86 7.0 tests on packet.net in docker-worker; r=jmaher 2018-08-07 10:05:38 -06:00
Chris AtLee 73de48e78a Bug 1409739 - Part 2: Remove old DMD configs r=glandium
MozReview-Commit-ID: H7kc33CXIbQ

--HG--
extra : source : c0da83c08b6266378fc86e89787ef8e1e534fa99
extra : intermediate-source : e37ea5eb932a417c296e0c67cb5badc701bc8206
extra : histedit_source : 2e1b12c9dbac38dd7834f5fada941c5ca7104288
2017-10-17 11:26:04 -04:00
Coroiu Cristina 7f6d72d2a2 Backed out 3 changesets (bug 1409739) for xpcshell failures at memory/replace/dmd/test/test_dmd.js
Backed out changeset dc3c5143ba4e (bug 1409739)
Backed out changeset e37ea5eb932a (bug 1409739)
Backed out changeset d39c2dfcc700 (bug 1409739)
2018-10-03 02:07:19 +03:00
Daniel Varga 6a29e8afe5 Merge mozilla-central to mozilla-inbound. a=merge 2018-10-03 01:17:27 +03:00
Chris AtLee 4beb1fd647 Bug 1409739 - Part 2: Remove old DMD configs r=glandium
MozReview-Commit-ID: H7kc33CXIbQ

--HG--
extra : rebase_source : e584c74f08d65fda680f8965e90d5647bc29cf78
extra : source : c0da83c08b6266378fc86e89787ef8e1e534fa99
2017-10-17 11:26:04 -04:00
Greg Mierzwinski d049263e2e Bug 1476526 - Make the baseline test use functions from BrowserTestUtils. r=marco
This patch makes a new baseline coverage test for browser-chrome which makes use of the BrowserTestUtils functions. It also begins the necessary changes so that the baseline test addition uses suites instead of file types.

MozReview-Commit-ID: 7nucHnF8CIn

--HG--
extra : rebase_source : a2a8f61bbbc5025544bebd74cee2a06d46f23fe2
2018-07-30 10:20:48 -04:00
Tudor-Gabriel Vîjială 62e4daad39 Bug 1473313 - Part 4: Add build and test platforms for android emulator code coverage. r=gbrown
MozReview-Commit-ID: IkSKdB7ZeYi

--HG--
extra : rebase_source : 1cff84a03c8f590ac3df5e0dc1ccf217fd2589c3
2018-07-24 11:53:37 +01:00
Tudor-Gabriel Vîjială 3912821304 Bug 1473313 - Part 3: Extend CodeCoverageMixin to handle java code coverage tools. r=gbrown,marco
MozReview-Commit-ID: Lld5XLUMb3Y

--HG--
extra : rebase_source : 503650f2610d3ee021222666a6e619486472e82d
2018-07-24 11:51:54 +01:00
Connor Sheehan 6d9ba813a0 Bug 1480232 - vendor latest robustcheckout with Mercurial 4.7 compatibility; r=gps
This commit updates the in-tree copy of robustcheckout to match the
4.7 compatible version in version-control-tools at revision
9fafc76e6f1c633897553523db01ad40edce5816.

Differential Revision: https://phabricator.services.mozilla.com/D2674

--HG--
extra : amend_source : a0ea2cd957cac26d3e296a251e17119e6f70457f
extra : histedit_source : 4951bcab68d2e249cf2dc8b6ad5f1fd23893c307
2018-08-02 11:56:49 -07:00
Chris AtLee 182e3f8445 Bug 733530: Use .tar.gz for test archives r=gps
Differential Revision: https://phabricator.services.mozilla.com/D1743

--HG--
extra : moz-landing-system : lando
2018-08-01 16:00:03 +00:00
Brindusan Cristian 888682e5d5 Backed out changeset e9cec41e7772 (bug 1458819) for linting failure on /testing/mozharness/configs/builds/branch_specifics.py:104:5. CLOSED TREE 2018-07-31 22:44:08 +03:00
Johan Lorenzo f9d9cea7c5 Bug 1458810 - Add missing single_locale config for esr60 l10n repacks r=sfraser
MozReview-Commit-ID: CqaltqmNJxq

--HG--
extra : rebase_source : ea723d93eefc3ca9573cc7fa009473beb6665062
extra : source : 606c129f3c3da37fabd3db5f27ae1ace091cd3d5
2018-05-03 10:03:17 +02:00
Johan Lorenzo 94d3032ff0 Bug 1458819 - esr60: platform.ini doesn't reference "releases/mozilla-esr60" r=sfraser
MozReview-Commit-ID: 2HOubatldNq

--HG--
extra : rebase_source : 3838f763aa0d619587a79c3b744bb5b669ab3f42
extra : source : ba263f0a5972d3eebd954a6ab9688a5e052258c7
2018-05-03 11:04:14 +02:00
Nick Thomas cad0f98b71 Bug 1408868 - use firefox-esr-next-latest{,-ssl} bouncer aliases until 60.2.0, r=aki
--HG--
extra : rebase_source : 2e725eed950348a4f2abf9bc3f57fcd867cb9f73
extra : source : fcf3e11f9f8b39f42e791b442dbf0d9c7401915f
2018-05-03 11:20:52 +12:00
Geoff Brown 0ff2524d56 Bug 1478801 - Enable structured output parser for most Windows tests; r=ahal
Uses the same mozharness structured output parser configuration on Windows as
on Linux and osx, for consistency.
Removes the ineffective "structured_suites" configuration for Windows unit
tests, since that key is ignored in desktop_unittest.py.
Also changes desktop_unittest.py to use structured output by default in
the absence of the expected unstructured_flavors configuration.
2018-07-29 11:18:58 -06:00
Andrew Halberstadt 55243d2d87 Bug 1468812 - [ccov] Don't re-download MOZ_FETCHES if it's already been setup by run-task r=marco
The 'codecoverage' mozharness script and a code coverage mach command for Android
did their own custom bootstrapping of MOZ_FETCHES. Now that run-task does this
automatically, we should make sure we aren't downloading MOZ_FETCHES twice.

Depends on D2167.

Differential Revision: https://phabricator.services.mozilla.com/D2368

--HG--
extra : moz-landing-system : lando
2018-07-27 12:44:48 +00:00
Andrew Halberstadt 52897f4c3a Bug 1478810 - [mozharness] Remove the unused 'mozbase' suite from desktop_unittest.py r=gbrown
There are no instances of --mozbase-suite in either m-c or c-c, which proves this is unused.

Differential Revision: https://phabricator.services.mozilla.com/D2470

--HG--
extra : moz-landing-system : lando
2018-07-27 16:22:26 +00:00
Rob Wood 15993592c1 Bug 1454053 - re-record tp6 pages for raptor; r=igoldan
MozReview-Commit-ID: Esy7cWeADdy

--HG--
rename : testing/raptor/raptor/playback/mitmproxy-playback-set.manifest => testing/raptor/raptor/playback/mitmproxy-recordings-raptor-tp6.manifest
extra : rebase_source : 99437134717bb9df35a7b70c493c3166319aad44
2018-07-24 09:33:10 -04:00
James Graham 8dd59553eb Bug 1477256 - Use certificate files from upstream in web-platform-tests, r=cactusmachete
These files are duplicates of each other, so for simplicity we may as well use the
upstream copies to avoid falling out of sync.

MozReview-Commit-ID: JpG3joT8NNJ

--HG--
extra : rebase_source : d06c8969a9f8871b078c22e72947f7cd7584fb00
2018-07-20 13:29:05 +01:00
Ben Hearsum 2d9f93eea7 bug 1469284: allow ssh username to be passed to the merge day scripts. r=mtabara 2018-07-23 10:39:01 -04:00
Christian Holler 37f45cc5e9 Bug 1473259 - Windows updates for ASan reporter nightly build. r=catlee
MozReview-Commit-ID: 6DQD5DnzyqB
2018-07-03 23:41:31 +02:00
Marco Castelluccio bd3f040c33 Bug 1476574 - Enable reset/dump for wpt and cleanup harness code for supporting reset/dump now that it is supported by all test suites. r=jmaher
--HG--
extra : source : c1b3950cc12f1642ad60338d2a8701e2b60131ea
extra : intermediate-source : 4ea7997194e9f995bb0b1e434524a0ea5596d758
extra : histedit_source : fffe672f456fd7c503792d2a3e99184c14bfd36c
2018-07-19 11:56:43 +02:00
Coroiu Cristina 46afadc431 Backed out 2 changesets (bug 1476574) for browser-chrome failures at browser/base/content/test/static/browser_all_files_referenced.js
Backed out changeset 4ea7997194e9 (bug 1476574)
Backed out changeset ec37892ce390 (bug 1476574)
2018-07-19 23:40:24 +03:00
Marco Castelluccio 57da0df505 Bug 1476574 - Enable reset/dump for wpt and cleanup harness code for supporting reset/dump now that it is supported by all test suites. r=jmaher
--HG--
extra : rebase_source : 554f640652e8a44e53d37ca8b4a139845efd75ec
extra : source : c1b3950cc12f1642ad60338d2a8701e2b60131ea
2018-07-19 11:56:43 +02:00
James Graham e7b4476630 Bug 1354232 - Chunk by dir more for wpt on asan, r=maja_zf
This means that when we run these tests, the LSAN exceptions will have
the minimum possible scope.

MozReview-Commit-ID: 5aFDWqSiaNb
2018-07-19 16:32:17 +01:00
Cosmin Sabou 88199de427 Merge mozilla-inbound to mozilla-central. a=merge 2018-07-18 20:19:59 +03:00
Rob Wood f3f62796a4 Bug 1473389 - Port raptor-speedometer to google chrome (chromium) on win7/win10/osx/linux64; r=jmaher
MozReview-Commit-ID: FE7XC4JNLD1

--HG--
extra : rebase_source : 15bafd218eebea8393ea311dbb22660c61a8bc06
2018-07-06 14:41:00 -04:00
Geoff Brown 6a2583332c Bug 1476318 - Use a more generic test for webgl tests in per_test_base; r=jmaher 2018-07-18 06:30:18 -06:00
Marco Castelluccio b4d232663f Bug 1471575 - Reset/dump gcov counters before/after reftest tests. r=sparky
--HG--
extra : rebase_source : 2c8175ef472caf72c3216d4e12301f6eab03f20b
2018-07-17 10:07:50 +02:00
Mihai Tabara eeb447589f Bug 1462064 - prevent release-bouncer-check test against sha1 installers. r=rail a=release
--HG--
extra : amend_source : 06df756683d047c58b898d4651e6886b54bed007
2018-07-11 20:50:21 -04:00
Andreea Pavel 41fc51d32b Merge mozilla-central to mozilla-inbound. a=merge on a CLOSED TREE 2018-07-10 19:38:34 +03:00
Andreea Pavel a80651653f Merge mozilla-inbound to mozilla-central. a=merge 2018-07-10 19:33:22 +03:00
Geoff Brown 0a065a0719 Bug 1474393 - Ensure test-verify knows when it is running in gpu mode; r=jmaher
An inconsistency in configuration between Android and desktop was causing
some tests not to be verified on Android.
2018-07-10 10:26:33 -06:00
Tudor-Gabriel Vîjială 1c4dd4a36e Bug 1471660 - Integrate code coverage for A(test) junit test suite via JaCoCo plugin. r=marco,nalexander
MozReview-Commit-ID: ElYGmF6zoYg

--HG--
extra : rebase_source : 4e8dfe3c2ee65c3b451caae4e5debde85632ffa4
2018-07-02 11:32:35 +01:00
Tudor-Gabriel Vîjială d9bff781b2 Bug 1472236 - Add grcov code coverage builds by using a fetch task. r=dustin,marco
MozReview-Commit-ID: 3PZMNDRqxRM

--HG--
extra : rebase_source : 31c0104bf03d702db5766b40b145a9a342d0e8b2
2018-07-02 16:55:56 +01:00
Marco Castelluccio 6eb9f8c25b Bug 1471573 - Support resetting/dumping coverage counters for mochitest. r=jmaher
--HG--
extra : rebase_source : c58f3d27a929dab244a9a3b2c7bdc8ce1d97215d
extra : intermediate-source : cdfcca54339699cee381c289f2d0d2ae2cccd918
extra : source : 0903f7dc6c7f3d7f10fec403d2ebee470e887876
2018-06-27 17:56:09 +01:00
Cosmin Sabou 0f160fe737 Backed out 2 changesets (bug 1471573) for mochitest failures on testAudioFocus.
Backed out changeset cdfcca543396 (bug 1471573)
Backed out changeset e7272b60f48f (bug 1471573)
2018-07-06 04:19:54 +03:00
Marco Castelluccio c344775a4b Bug 1471573 - Support resetting/dumping coverage counters for mochitest. r=jmaher
--HG--
extra : rebase_source : bd41a3cc5b18d3bc594acc7b9fc9dc86e684885b
extra : source : 0903f7dc6c7f3d7f10fec403d2ebee470e887876
2018-06-27 17:56:09 +01:00
Noemi Erli 9991670b5c Merge mozilla-central to inbound. a=merge CLOSED TREE 2018-07-06 00:53:19 +03:00
Geoff Brown f6d41c72ca Bug 1471717 - Disable mozharness log format changes for android and linux; r=me,a=test-only
This effectively backs out the previous log format changes to avoid the
difficulties of bug 1473565. Hopefully this can be re-enabled once treeherder
is updated.
2018-07-05 15:25:52 -06:00
Rob Wood 49994d39f4 Bug 1467824 - Port raptor-speedometer google chrome to linux64; r=jmaher
MozReview-Commit-ID: Ak2dq9zI9Nw

--HG--
extra : rebase_source : dd1df4e91c32072e4bf8e95e274b0777ef7ca604
2018-07-04 16:20:37 -04:00
Justin Wood 207eb46e7f Bug 1473528 - Don't cause jobs to auto-retry when failing for desktop l10n. r=sfraser
In l10n repacks we run the repackage multiple times, once for each locale. If something low level fails (like compare-locales) we'll abort out and call _add_failure (from _map) which then will set the return code based on the type of failure.

However it, by default, will increment the return code each time it is called in BaseScript, so to preserve expectations here we should disable that from desktop_l10n.py

Differential Revision: https://phabricator.services.mozilla.com/D1971

--HG--
extra : moz-landing-system : lando
2018-07-05 13:15:19 +00:00
Joel Maher 13a435915f Bug 1471227 - adjust taskcluster backfill with path to use test-verify instead of original job. r=gbrown
Differential Revision: https://phabricator.services.mozilla.com/D1961

--HG--
extra : moz-landing-system : lando
2018-07-04 20:01:36 +00:00
Bogdan Tara 6eafe1c00b Backed out changeset 9c75cab2e322 (bug 733530) for breaking artifact builds 2018-07-04 14:50:22 +03:00
Gurzau Raul 03062dd04b Merge inbound to mozilla-central. a=merge 2018-07-04 12:58:33 +03:00
Rok Garbas 2a544047c6 Bug 1471541 - switch to new tooltool url, r=jlund
--HG--
extra : rebase_source : 85cd6f1e78ec293d5c9fba8d41b31b5ca8bc521e
2018-07-03 15:35:58 -07:00
shindli 5cc2efce78 Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-07-04 01:01:25 +03:00
Chris AtLee 8745339529 Bug 733530: Use .tar.gz for test archives r=gps
Differential Revision: https://phabricator.services.mozilla.com/D1743

--HG--
extra : moz-landing-system : lando
2018-07-03 18:33:02 +00:00
Geoff Brown b61f4883c9 Bug 1472311 - Use android_common.py for android-hw mozharness config; r=bc 2018-07-03 07:33:47 -06:00
Geoff Brown ba2bbfe318 Bug 1472311 - Expand mozharness configs for android-em to accept parameters needed for android-hw; r=bc 2018-07-03 07:33:44 -06:00
Tiberius Oros 65a30935a5 Merge inbound to mozilla-central. a=merge 2018-07-03 00:53:57 +03:00
Marco Castelluccio 1dad6a26ea Bug 1472686 - Don't reset/dump counters for baseline tests. r=jmaher
--HG--
extra : rebase_source : be6d03516914305ba4bfdfc54ba9c42c1eec1b14
extra : amend_source : 0e23b6809f2ae5eb2148c834916dc46c1cbcaead
extra : source : 4104758abe6132e8f3b65e1f2f8e0153bc04ae08
2018-06-29 17:37:30 +01:00
Simon Fraser f0343935e5 Bug 1469803 Update cron bouncer check to use product-details r=rail
Differential Revision: https://phabricator.services.mozilla.com/D1883

--HG--
extra : moz-landing-system : lando
2018-06-29 18:41:42 +00:00
Andreea Pavel 91a9c110e2 Merge mozilla-inbound to mozilla-central. a=merge 2018-06-30 12:49:32 +03:00
Jeff Gilbert 000829776c Bug 1471112 - Split mochitest-gl into mochitest-webgl[1,2]-[core,ext] - r=gbrown
Also include webgl2-deqp, which we would like to run eventually, but not yet.

MozReview-Commit-ID: CY4hYCI95ws

--HG--
extra : rebase_source : 9973df0f905bb65d2e8b8c66a6a57e8869e527c1
2018-06-25 20:23:33 -07:00
Eric Rahm d545dc0998 Bug 1470831 - Only disable sandboxing in dmd builds. r=bc
Disabling sandboxing seems to cause a memory regression for win32 builds which
affects our AWSY numbers. This switches over to only disabling sandboxing if
using a DMD build so that we can still run without crashing.

--HG--
extra : rebase_source : 9887c19cdd746aec9f6d9e64561f2226cd1ce443
2018-06-25 11:52:21 -07:00
Gurzau Raul 4074ba4032 Backed out 2 changesets (bug 1471112) for failing webgl2 tests on OSX
Backed out changeset 7f2d98706144 (bug 1471112)
Backed out changeset 1f26d0868935 (bug 1471112)
2018-06-29 18:20:55 +03:00
Marco Castelluccio 4e2f73b382 Bug 1471166 - Update grcov to v0.1.40, stop zipping gcda files. r=jmaher
--HG--
extra : rebase_source : 21fcf27d2abc3c31d522b8a3d3b4a416c47313c5
2018-06-27 00:26:44 +01:00
Margareta Eliza Balazs ee85ffa45d Merge inbound to mozilla-central. a=merge 2018-06-29 12:41:54 +03:00
Jeff Gilbert 9786adccaf Bug 1471112 - Split mochitest-gl into mochitest-webgl[1,2]-[core,ext] - r=gbrown
Also include webgl2-deqp, which we would like to run eventually, but not yet.

MozReview-Commit-ID: FDWdu1J0end

--HG--
extra : rebase_source : a47d88cb2c5eb82e4dfaa9e58d76acbf0736d35d
2018-06-25 20:23:33 -07:00
shindli c57ab475c6 Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-06-29 01:51:06 +03:00
shindli d288e9cae7 Merge inbound to mozilla-central. a=merge 2018-06-29 00:53:32 +03:00
Rob Wood 04c2aebe5f Bug 1468865 - Port raptor firefox tp6 to win; r=jmaher
MozReview-Commit-ID: 78VGzPkhkww

--HG--
extra : rebase_source : bffe3cfdd3384ebbff41c01347dde03f656935a7
2018-06-26 17:56:20 -04:00
shindli ae4d702ed7 Merge mozilla-central to inbound. a=merge CLOSED TREE 2018-06-29 02:25:23 +03:00
Brindusan Cristian 12da58dd0d Backed out 2 changesets (bug 1471112) for mochitest failures on test_2_conformance2__textures__image__tex-3d-rgba16f-rgba-float.html. CLOSED TREE
Backed out changeset 4c92c4b611c6 (bug 1471112)
Backed out changeset df70300f00cd (bug 1471112)
2018-06-28 23:03:14 +03:00
Marco Castelluccio 746c499514 Bug 1471769 - Cleanup both GCOV_PREFIX and GCOV_RESULTS_DIR directories at the end of a test. r=jmaher
--HG--
extra : rebase_source : 79325db3a887ae48eeb02620bd6aefb5bcf141dc
2018-06-28 09:49:10 +01:00
Jeff Gilbert f4fabccc71 Bug 1471112 - Split mochitest-gl into mochitest-webgl[1,2]-[core,ext] - r=gbrown
Also include webgl2-deqp, which we would like to run eventually, but not yet.

MozReview-Commit-ID: FDWdu1J0end
2018-06-28 12:00:34 -07:00
Geoff Brown 75500f2673 Bug 1471717 - Remove extra timestamp from mozharness logs for linux and android unit tests; r=jmaher 2018-06-28 11:59:27 -06:00
Tiberius Oros 945c24abe5 Merge mozilla-central to autoland. a=merge CLOSED TREE 2018-06-28 01:12:18 +03:00
Marco Castelluccio 37e7ee033d Bug 1470151 - Support resetting/dumping coverage counters in per-test mode for xpcshell on Linux. r=jmaher
--HG--
extra : rebase_source : f2d33c3f952a04c96a4ca02691e10ff5241522bf
extra : source : c73f394a4bef01cccd76d635bce9d67e4a48f721
2018-06-21 14:41:32 +01:00
Coroiu Cristina a2ea371c3c Backed out 3 changesets (bug 1470151) for build bustage at testing/xpcshell/selftest.py on a CLOSED TREE
Backed out changeset c73f394a4bef (bug 1470151)
Backed out changeset 3579431e03dc (bug 1470151)
Backed out changeset ddde7dd347d4 (bug 1470151)
2018-06-27 16:57:10 +03:00
Marco Castelluccio 09c7d31a96 Bug 1470151 - Support resetting/dumping coverage counters in per-test mode for xpcshell on Linux. r=jmaher
--HG--
extra : rebase_source : 92336abb5c9e97dd42d322b4e683c9f617ea4cc2
2018-06-21 14:41:32 +01:00
Dorel Luca f51c4fa5d9 Merge mozilla-inbound to mozilla-central. a=merge 2018-06-27 13:26:49 +03:00
rforbes a9523d34ea Bug 1470079 - Add fuzzing coverage build to taskcluster r=marco
MozReview-Commit-ID: 5TyxY2KmLCs

--HG--
extra : rebase_source : ad480d344e428ffcb1c31ab5bca1f6c9a468d6e1
2018-06-24 18:48:52 -07:00
Geoff Brown cfeda7ee07 Bug 1466671 - Cleanup mozharness failure message regex; r=jmaher
DMError and the _runCmd error were added for DeviceManager, now obsolete.
_dl_open was added in bug 1220362 for linux64 Talos failures, no longer observed.
twisted errors were added in bug 1280570; I don't recall seeing them since buildbot days.
2018-06-26 16:17:51 -06:00
Geoff Brown 655a80b240 Bug 1460411 - Update configuration for androidx86_7_0 tests; r=me,a=test-only 2018-06-26 16:17:50 -06:00
rforbes 6f47a9bb39 bug 1471638 - fix name for coverage fuzzing build r=marco
MozReview-Commit-ID: LXHvfolbgfE

--HG--
extra : rebase_source : cdb17b92eb4bb201cc054468c7961e2f81fee3e7
2018-06-27 10:29:08 -07:00
Julien Cristau c95be1c7c1 Bug 1469423 - add an option to let l10n-bumper trigger builds. r=mtabara
MozReview-Commit-ID: CYOHmQ4os8l

--HG--
extra : rebase_source : 32874b3a7c9742bf2d21060cef7cd3fc6f15d4d8
2018-06-19 17:24:05 +02:00
Tom Ritter 8fab7ae7af Bug 1451601 Do not buffer output in TaskCluster job output r=gps
MozReview-Commit-ID: 4XOcqSXGhHi

--HG--
extra : rebase_source : 315755e7027546f26f98d154dfe15cd0eaf5684d
2018-06-25 15:28:06 -05:00
Joel Maher 9c7f5155eb Bug 1466853 - Port stylebench and motionmark benchmarks test from talos to raptor. r=rwood
stylebench and motionmark run in talos, we want these running in raptor

Differential Revision: https://phabricator.services.mozilla.com/D1814
2018-06-25 20:28:58 +00:00
Henrik Skupin 894f69b8b2 Bug 1470414 - Clean-up moz.build files for BUG_COMPONENT in testing/. r=ahal
MozReview-Commit-ID: F5vHc4G13v6

--HG--
extra : rebase_source : 1c6c8de55def6026da467d589ec3a8b511986125
2018-06-22 13:32:05 +02:00
Margareta Eliza Balazs 38873b16e7 Backed out changeset 52e86ed85e54 (bug 1470414) for bustage in ./config/tests/test_mozbuild_reading.py::TestMozbuildReading on a CLOSED TREE 2018-06-25 17:29:18 +03:00
Henrik Skupin df65676052 Bug 1470414 - Clean-up moz.build files for BUG_COMPONENT in testing/. r=ahal
MozReview-Commit-ID: F5vHc4G13v6

--HG--
extra : rebase_source : c39293be7a60ecc22be2f385671769f371dca06b
2018-06-22 13:32:05 +02:00
Bob Clary 1e9e1b9418 Bug 1426586 - Add mozharness script and config for android hardware tests, r=gbrown 2017-12-19 00:26:18 -08:00
Eric Rahm 08c517ede3 Bug 1395540 - Part 6: Fix missing whitespace. r=me
--HG--
extra : rebase_source : b72967aeecd2a9e397ccd1c1a9bf7d2eec13a328
2018-06-22 12:13:35 -07:00
Eric Rahm 5ab7117b5c Bug 1395540 - Part 5: Enable DMD in automation. r=bc
This adds support running AWSY with DMD in automation via mozharness. We use
existence of dmd.py to detect whether or not dmd should be enabled.
Additionally sandboxing has to be disabled in order to avoid crashes on Windows
and OSX.

--HG--
extra : rebase_source : 1576dbb98bc2cff565ea5055daaec5a44aed88a8
2018-06-15 09:59:18 -07:00
Dorel Luca b595d82310 Merge mozilla-central to mozilla-inbound 2018-06-20 01:06:23 +03:00
Justin Wood fa608470a1 Bug 1469595 - Android single locale (not nightly) broken on beta. r=rail
Differential Revision: https://phabricator.services.mozilla.com/D1703
2018-06-19 16:41:32 +00:00
Kris Maglione 0506a56751 Bug 1468362: Remove ADDON_SINGING buildconfig setting. r=aswan
MozReview-Commit-ID: MeD4VQPVf6

--HG--
extra : rebase_source : c40ed5b7d194290332f0aa77deaf91812de48c42
extra : histedit_source : 34a69d708597fcdbfb9bffccd7dbf28c9d1a42a7
2018-06-12 13:56:58 -04:00
Rob Wood 685ce41033 Bug 1467827 - Port raptor firefox tp6 to linux; r=jmaher
MozReview-Commit-ID: AQuWSuw7cFw

--HG--
extra : rebase_source : 7c74a2a31c0fdac89b9fd0950e5a53cd64e2d7f5
2018-06-13 14:04:46 -07:00
Gregory Szorc e536804584 Bug 1469351 - Vendor latest robustcheckout; r=sheehan
This vendors the latest version of the robustcheckout extension with
a workaround for bug 1462323. This should hopefully mitigate the
underlying issue while servers are being physically moved this
week.

Differential Revision: https://phabricator.services.mozilla.com/D1689
2018-06-18 19:15:16 +00:00
Ciure Andrei 6eea08365e Merge inbound to mozilla-central. a=merge 2018-06-15 12:49:01 +03:00
Eric Rahm 9c612e5cd2 Bug 1464501 - Part 3: Use rust-size to get section sizes. r=froydnj
--HG--
extra : rebase_source : 734cd5313225bd5041173e726ae124eca5ad4c1b
extra : source : 132442e735694677536e1f09180f45c77325500c
extra : histedit_source : 09f32eeb8869acce3d935e7638e58f62fd7b9764
2018-06-07 17:25:18 -07:00
Brindusan Cristian abab6bc7a4 Backed out 3 changesets (bug 1464501) for build bustages. CLOSED TREE
Backed out changeset 132442e73569 (bug 1464501)
Backed out changeset 7e85e1b2f6fa (bug 1464501)
Backed out changeset e891ab259427 (bug 1464501)
2018-06-14 04:16:31 +03:00
Eric Rahm fd20b83868 Bug 1464501 - Part 3: Use rust-size to get section sizes. r=froydnj
--HG--
extra : rebase_source : 8702db4128548cd41b552ba9327192b3e051b7b9
2018-06-07 17:25:18 -07:00
Rob Wood 978d9b823c Bug 1460743 - Add 'speedometer' benchmark to raptor for google chrome; r=jmaher
Includes a temporary downloading/installing Chrome 'hack' just so we can get going on try, until 'official' chrome builds are available in CI. Also some small raptor fixes/changes to support speedometer on chrome.

MozReview-Commit-ID: 8ZBlOg0BOE4

--HG--
extra : rebase_source : 8271a7b9efd6b1d30e363eb47876d82f243d5ca7
2018-06-04 15:42:44 -04:00
Joel Maher 8ee7eee7e1 Bug 1467837 - adjust some code for test-coverage gpu/chunks and minor cleanup in per test code. r=gbrown 2018-06-08 16:21:14 -04:00
Ciure Andrei 9aae925042 Merge mozilla-central to mozilla-inbound. a=merge CLOSED TREE 2018-06-08 00:07:12 +03:00
Justin Wood f8fc850b73 Bug 1466222 - Drop now-unused platform config variable. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1564

--HG--
extra : source : 7bb7694f5d5d78ae85291b22fff313e9d8e42eb1
2018-06-05 20:50:53 -04:00
Justin Wood 81b6d88493 Bug 1466222 - Don't allow mar_tools_url to be runtime configured. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1563

--HG--
extra : source : 185a82778d94271ed27b60f333e78859bc09605f
2018-06-05 20:47:38 -04:00
Justin Wood f206f89f53 Bug 1466222 - Drop unused config upload_branch. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1562

--HG--
extra : source : 18fe0eb0545cfa2b5809289dbd34e00841a5f41e
2018-06-05 15:21:50 -04:00
Justin Wood 0a8a1bab1e Bug 1466222 - Remove locales_file and locales_platform from desktop and mobile l10n. r=catlee
Leave support for multil10n uses for now.

for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1561

--HG--
extra : source : bb28c2d9d5f51f6e7eb797b892247948f1f7021b
2018-06-05 12:58:00 -04:00
Justin Wood bd18f9d692 Bug 1466222 - Clean out actions from multi-locale that are not used. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1560

--HG--
extra : source : 38d7f885284ebda6d92abb9d6b1f45e540770bbf
2018-06-05 11:57:52 -04:00
Justin Wood b45b08d319 Bug 1466222 - Cleanup handling of en_us_binary_url. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1549

--HG--
extra : source : 0970518ff4bd11538f784d66c1e5a3631eabccc8
2018-06-04 20:52:46 -04:00
Justin Wood acd740c287 Bug 1466222 - Remove a bunch of unused l10n config files. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1548

--HG--
extra : source : c71a6be37cfcca8da7e32da37ac09db8092d2f92
2018-06-04 20:25:26 -04:00
Justin Wood 12a031341f Bug 1466222 - pyflake locales.py r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1547

--HG--
extra : source : 507fe13a38673cdafc0156ff5ab6baed653a5725
2018-06-04 15:29:05 -04:00
Justin Wood 5754718259 Bug 1466222 - hashType is unsued r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1546

--HG--
extra : source : 3c9e951bdc9e8363bef4df270d0ef01761139cec
2018-06-04 14:25:34 -04:00
Justin Wood c3eb2b8e1c Bug 1466222 - there is no longer a funsize_props action. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1545

--HG--
extra : source : 259365b927a79ef4ec111239e0433c6eff25ad09
2018-06-04 14:25:06 -04:00
Justin Wood 5d2e106c9a Bug 1466222 - buildid_section and buildid_option are now unused. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1544

--HG--
extra : source : 705e5e28693b41ca69b679f89ed8bf95b858d454
2018-06-04 14:24:09 -04:00
Justin Wood 593f57f10c Bug 1466222 - application_ini is unused. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1543

--HG--
extra : source : 7b9f759f30fc98811987c3e530bc20caf0006b71
2018-06-04 14:23:00 -04:00
Justin Wood e0c508c9c3 Bug 1466222 - _mar_dir is unsued r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1542

--HG--
extra : source : b50f13740021c69b8b118eca766671878a7142ab
2018-06-04 14:16:51 -04:00
Justin Wood ead1c19da1 Bug 1466222 - Drop some unused runtime config tokens. r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1541

--HG--
extra : source : 7cf0da1e476bcbc7370c06cee3adc8ec1083a0ef
2018-06-04 14:08:56 -04:00
Justin Wood eb0ea0288d Bug 1466222 - Noqa the pythonpath magic to avoid warnings about module imports not being first r=catlee
for "Cleanup l10n mozharness config files." (Batch 2)

Differential Revision: https://phabricator.services.mozilla.com/D1540

--HG--
extra : source : 9250705be918a4e8a9ee35e353f42c048d5f1a15
2018-06-04 14:04:35 -04:00
Coroiu Cristina 8c5dff3ef1 Backed out 15 changesets (bug 1466222) for breaking android nightly a=backout
Backed out changeset 7bb7694f5d5d (bug 1466222)
Backed out changeset 185a82778d94 (bug 1466222)
Backed out changeset 18fe0eb0545c (bug 1466222)
Backed out changeset bb28c2d9d5f5 (bug 1466222)
Backed out changeset 38d7f885284e (bug 1466222)
Backed out changeset 0970518ff4bd (bug 1466222)
Backed out changeset c71a6be37cfc (bug 1466222)
Backed out changeset 507fe13a3867 (bug 1466222)
Backed out changeset 3c9e951bdc9e (bug 1466222)
Backed out changeset 259365b927a7 (bug 1466222)
Backed out changeset 705e5e28693b (bug 1466222)
Backed out changeset 7b9f759f30fc (bug 1466222)
Backed out changeset b50f13740021 (bug 1466222)
Backed out changeset 7cf0da1e476b (bug 1466222)
Backed out changeset 9250705be918 (bug 1466222)
2018-06-07 14:37:40 +03:00
Narcis Beleuzu ca7840b070 Merge mozilla-central to inbound. a=merge CLOSED TREE 2018-06-06 20:05:19 +03:00
Sylvestre Ledru c311ea67ca Bug 1464869 - Fix flake8/pep8 issue by hand in testing/mozharness/mozharness/mozilla/testing/ r=jmaher
MozReview-Commit-ID: BXZarR8VsKC

--HG--
extra : rebase_source : 361bdb34789c889cad7d45aa604f80285ff1254f
2018-06-01 12:20:53 +02:00
Sylvestre Ledru f58bf1ec32 bug 1464869 - autopep8 on testing/mozharness/mozharness/mozilla/testing/ r=jmaher
MozReview-Commit-ID: DctKr839e6

--HG--
extra : rebase_source : 8b4295505121565e85c7f2e91778bb3d6c83f344
2018-06-01 12:08:28 +02:00
Tom Ritter 2eb926954e Bug 1457482 Add an LTO Build Target r=glandium
This build target doesn't have LTO enabled on it (yet)

MozReview-Commit-ID: 56tAHMyvH7o

--HG--
extra : rebase_source : 90039cd8e97332e2ef8aad7908b8a04b2869f4a5
2018-05-30 12:27:25 -05:00
arthur.iakab 6f3599753b Merge mozilla-central to autoland on a CLOSED TREE 2018-06-06 01:08:18 +03:00
arthur.iakab fd0ee7c9b8 Merge inbound to mozilla-central a=merge 2018-06-06 00:58:30 +03:00
Rob Wood a7e1207510 Bug 1466828 - Fix auto-launching of talos gecko profiles in perfhtml.io; r=jmaher
MozReview-Commit-ID: AiEdkKiN8zq

--HG--
extra : rebase_source : a3e867689990d42126d39317942912b8e304fcbc
2018-06-05 15:31:51 -04:00
Justin Wood 00d6a0b960 Bug 1466222 - Get rid of unused mobile_partner_repack.py script. r=catlee
for "Cleanup l10n mozharness config files."

Differential Revision: https://phabricator.services.mozilla.com/D1535

--HG--
extra : rebase_source : 8c346ccbb7642dd94a1e76ee5b021ce1d13e7a16
extra : source : 8c0f4cb39d9e3b41a2d85a99ead11f9b04b9b948
2018-06-04 12:36:38 -04:00
Justin Wood e4783e86e2 Bug 1466222 - Get rid of unused replace_dict entries and buildid parsing support. r=catlee
for "Cleanup l10n mozharness config files."

Differential Revision: https://phabricator.services.mozilla.com/D1534

--HG--
extra : rebase_source : 03953bd97cf23248932f3a5897ad2b6fe0a72482
extra : source : c09c662c896b06b946db5158cd804f901998814c
2018-06-04 12:32:50 -04:00