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

9289 Коммитов

Автор SHA1 Сообщение Дата
Mike Hommey 15c4d4af6e Bug 1685244 - Update sccache to a version with patched tiny-http. r=firefox-build-system-reviewers,mhentges
Bug 1683824 updated to the 0.2.14 tag, but that's patched in order to
publish to crates.io such that tiny-http is not patched anymore.
Unfortunately, that breaks sccache-dist, which is a known issue and will
eventually fixed when addressing
https://github.com/mozilla/sccache/issues/912.
So here we update to a corresponding version on master (the first that
bumps the version to the next number).

Differential Revision: https://phabricator.services.mozilla.com/D100863
2021-01-06 14:01:13 +00:00
Andi-Bogdan Postelnicu d7fb68e56d Bug 1683613 - For `non-unified` build have a task that runs checks when merging to mozilla-central r=mhentges
Differential Revision: https://phabricator.services.mozilla.com/D100796
2021-01-05 19:40:23 +00:00
Gabriele Svelto 7c4527f7ab Bug 1621475 - Generate symbol files in MinGW builds r=tjr
This uses the new cross-platform dump_syms tool to generate symbols for MinGW
builds, just like on all other platforms.

Differential Revision: https://phabricator.services.mozilla.com/D100707
2021-01-06 08:22:31 +00:00
Mike Hommey 968967eb1d Bug 1684956 - Update builders to rustc 1.49. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D100726
2021-01-06 00:00:13 +00:00
Jeff Muizelaar 3c2a15cd74 Bug 1684799 - Add github sync job for qcms. r=jmaher,taskgraph-reviewers
This is basically just a copy of the existing webrender sync job.

Differential Revision: https://phabricator.services.mozilla.com/D100646
2021-01-05 14:09:46 +00:00
Mike Hommey b94996533d Bug 1684954 - Upgrade rustc to 1.49 final for arm64 mac builds. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D100725
2021-01-05 00:01:21 +00:00
Mike Hommey 64f1e310ff Bug 1683824 - Update sccache to 0.2.14. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D100288
2021-01-04 20:46:16 +00:00
ffxbld 767246ba4b No Bug, taskcluster/docker/funsize-update-generator/requirements.txt pip-update. r=bhearsum
Differential Revision: https://phabricator.services.mozilla.com/D100652
2021-01-04 15:26:32 +00:00
Cosmin Sabou 815fecbfa9 Backed out changeset 140b5dff0375 for causing a spike in Bug 1521378. CLOSED TREE 2021-01-04 18:26:23 +02:00
ffxbld 3ed9338732 No Bug, taskcluster/docker/funsize-update-generator/requirements.txt pip-update. r=bhearsum
Differential Revision: https://phabricator.services.mozilla.com/D100652
2021-01-04 15:26:32 +00:00
Emilio Cobos Álvarez 78414576b9 Bug 1684350 - Update cbindgen to 0.16.0. r=andi
I was waiting for a better reason to do this, because the cbindgen
changes from 0.15.0 to 0.16.0 don't break trunk builds. But since
downstream has updated (see bug 1684180) and there's no reason not to,
let's do this to avoid future churn.

Differential Revision: https://phabricator.services.mozilla.com/D100499
2020-12-28 13:42:06 +00:00
Aaron Klotz 3d65781eff Bug 1654817: Part 1 - Convert e10s-multi transform to an e10s-single transform; r=taskgraph-reviewers,jmaher
Since e10s-multi is going to be enabled by default, this gives us the ability
to run junit in a secondary, e10s-single configuration so that we can see them
both side-by-side for a little while, at least until we're settled in with the
e10s-multi configuration.

Differential Revision: https://phabricator.services.mozilla.com/D94883
2020-11-23 17:16:07 +00:00
Andrew Erickson 9b230b2b7b Bug 1665012: configure taskgraph to send jobs to s7g devices at bitbar r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D100157
2020-12-18 21:38:02 +00:00
Tarek Ziadé b11e11098e Bug 1683092 - Don't use a shippable build r=decoder
Differential Revision: https://phabricator.services.mozilla.com/D100125
2020-12-18 15:41:20 +00:00
Mike Hommey 6e7d937be7 Bug 1682660 - Set CMAKE_RANLIB when building compiler-rt. r=dmajor
Without it, the build uses /usr/bin/ranlib, which, for some reason,
doesn't fail, but does weird things.

Differential Revision: https://phabricator.services.mozilla.com/D100073
2020-12-18 04:42:16 +00:00
Mike Hommey a734bb41a9 Bug 1682660 - Wrap clang to pass all the necessary flags when building compiler-rt. r=dmajor
When building compiler-rt for macOS, its build system assumes the
compiler used is a native macOS clang, drops all the cmake C/C++ flags,
and adds its own.

Because we do need to pass `-target $target` (otherwise we end up with
ELF x86_64 objects) and `-mcpu=apple-a12` for the correct baseline for
arm64 macOS, and because there is unfortunately no cmake variable that
the compiler-rt build system will use, and because CMAKE_C*_COMPILER
need to be a program without arguments, we need to wrap the compiler.

While here, add `-v` to the ninja call to have more useful logs.

Differential Revision: https://phabricator.services.mozilla.com/D99841
2020-12-18 01:50:07 +00:00
Tarek Ziadé 4c874857ed Bug 1682829 - Automate a fuzzing smoke test in the CI r=decoder
Adds a smoke test script we can use in the CI to smoke test Firefox prior to
bigger tests.

Differential Revision: https://phabricator.services.mozilla.com/D100008
2020-12-17 13:22:16 +00:00
David Major b870772aae Bug 1563019 - Enable ASan for rust code in linux64-asan builds r=decoder,mhentges
This patch enables ASan for rust code in the `linux64-asan/{debug,opt}` and `linux64-asan-fuzzing` build tasks. Since it is a `-Z` unstable flag, we'll move to the same `linux64-rust-nightly` toolchain that TSan builds use.

For the time being, the ASan Nightly Reporter builds are left alone, until we're more familiar with the perf impacts of this landing.

Differential Revision: https://phabricator.services.mozilla.com/D99556
2020-12-15 17:38:48 +00:00
Tom Ritter e09dac517f Bug 1676934 - Remove holly from run-on-projects. a=fix CLOSED TREE
Subscribers: rjl

Bug #: 1676934

Differential Revision: https://phabricator.services.mozilla.com/D99839
2020-12-15 22:58:36 +02:00
Alexis Beingessner 3dad9f7cae Bug 1682344 - enable mochitest-a11y under tsan. r=decoder
Differential Revision: https://phabricator.services.mozilla.com/D99718
2020-12-15 14:21:24 +00:00
Tom Ritter b5397a3ef6 Bug 1676934 - Create an Updatebot Docker image and job r=releng-reviewers,aki
Differential Revision: https://phabricator.services.mozilla.com/D97040
2020-12-15 19:19:32 +00:00
David Major 43a2ab175a Bug 1682405 - Clean up unused clang toolchains (mostly clang-9) r=firefox-build-system-reviewers,mhentges
At this point it's pretty clear that we won't be reverting to clang-9.

This doesn't remove everything with clang-9 in the name. I did a mark-and-sweep GC by hand so this only removes unused entries. Some are still active, e.g. linux64-clang-9 is used to build a number of misc helper tools.

Differential Revision: https://phabricator.services.mozilla.com/D99721
2020-12-15 17:46:10 +00:00
David Major fc36c569fc Bug 1682320 - Increase timeout for win64-ccov builds r=marco DONTBUILD
Looking at the "Similar Jobs" list on m-c Treeherder, by eyeball about 10% of builds are running over time.

Differential Revision: https://phabricator.services.mozilla.com/D99686
2020-12-14 21:44:06 +00:00
James Graham 040d0a70a2 Bug 1678663 - Run wpt tests under Python 3 on Taskcluster, r=bc
Differential Revision: https://phabricator.services.mozilla.com/D99251
2020-12-14 14:17:33 +00:00
Jamie Nicol 57b9ef1959 Bug 1681962 - Update cargo-apk CI dependency to a version which can read the new Cargo.lock file format. r=jrmuizel
Depends on D99456

Differential Revision: https://phabricator.services.mozilla.com/D99457
2020-12-11 17:00:48 +00:00
Mike Hommey d79dcf5161 Bug 1623520 - Switch Windows asan and fuzzing builds to cross-builds. r=decoder
Differential Revision: https://phabricator.services.mozilla.com/D79417
2020-12-11 05:06:12 +00:00
David Major 5c14f2ff01 Bug 1681823 - Fix typo in clang-tidy-external Treeherder symbol r=andi DONTBUILD
I noticed this while trying to "add new jobs" for something nearby.

Differential Revision: https://phabricator.services.mozilla.com/D99385
2020-12-10 20:34:50 +00:00
Mike Hommey fc82043bfb Bug 1681654 - Upgrade rustc to 1.49 beta 3 for arm64 mac builds. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D99314
2020-12-10 19:59:21 +00:00
Sebastian Hengst d9f1f90a4e Bug 1681720 - fix addition of suffix '-bk' to backfilled tasks. r=aki,jmaher
Differential Revision: https://phabricator.services.mozilla.com/D99347
2020-12-10 16:50:22 +00:00
James Graham 3c9ea32e23 Bug 1680752 - Provide a python-3 opt-in for tests on Taskcluster, , bhearsum r=bc,bhearsum
This requires tests to specify `python-3: true` in order to be run
with Python 3. When nothing is specified things work just like today,
so it's a more conservative change than the one in bug 1672181.

Obviously in the long term we will remove this and switch to Python 3
only, but this unblocks moving harnesses to py3 today.

Differential Revision: https://phabricator.services.mozilla.com/D98766
2020-12-10 14:02:38 +00:00
Mike Hommey a5ae57fe22 Bug 1681441 - Update valgrind package to Debian's 3.16.1. r=firefox-build-system-reviewers,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D99182
2020-12-09 15:50:05 +00:00
shravanrn@gmail.com d475a75904 Bug 1670878: Instantiating a large number of wasm library sandboxes crashes due to overuse of file descriptors r=tjr
Instantiating a wasm library duplicates a file descriptor for /dev/null 3 times to be used as input, output and error streams for the wasm sandboxed code. When a lot of sandboxes are created and destroyed, a lot of descriptors are duplicated and closed. While this should be fine, POSIX does not seem to happy with the opening and closing of many file descriptors --- this could perhaps be some strange interaction with Firefox's seccomp filters and cross-process file descriptor handling as it is difficult to repro this outside of firefox.

However, the simpler fix here was to just eliminate the duplication of /dev/null and return an error when input, output or error streams are accessed by wasm sandboxed code. This means calls to printf will fail, but no code I know off actually checks the int error code returned by printf and this change is certainly compatible with existing sandboxed components.

Differential Revision: https://phabricator.services.mozilla.com/D99160
2020-12-09 21:54:03 +00:00
Mihai Alexandru Michis 05ce4b0dac Backed out changeset ea5674f9a511 (bug 1680752) for causing android failures.
CLOSED TREE
2020-12-09 23:06:23 +02:00
James Graham dfd62d5a30 Bug 1680752 - Provide a python-3 opt-in for tests on Taskcluster, , bhearsum r=bc,bhearsum
This requires tests to specify `python-3: true` in order to be run
with Python 3. When nothing is specified things work just like today,
so it's a more conservative change than the one in bug 1672181.

Obviously in the long term we will remove this and switch to Python 3
only, but this unblocks moving harnesses to py3 today.

Differential Revision: https://phabricator.services.mozilla.com/D98766
2020-12-09 16:49:23 +00:00
Alexis Beingessner c7d78f4a93 Bug 1680124 - add example patch file for rust builds. r=dmajor
This is step 1 to make the docs here better, as discussed. Another followup
will come in a day or two to update the text/links of the docs to refer to
this and the latest version of repack-rust.

Differential Revision: https://phabricator.services.mozilla.com/D99128
2020-12-08 19:53:17 +00:00
Aki Sasaki de98fbb5d1 Bug 1668693 - fix too-long treeherder symbols on backfill. r=aryx,taskgraph-reviewers,jmaher DONTBUILD
We ended up with a symbol `mda2-dafa26b89ed-bk-1754415059f-bk`, which is longer
than the allowed schema length of 25 characters. Let's keep the existing
backfill suffix per sheriffs.

Differential Revision: https://phabricator.services.mozilla.com/D98694
2020-12-08 19:01:53 +00:00
Sebastian Hengst 33446223da Bug 1681319 - add macOS DevEdition with WebRender enabled as Tier 1 platform. r=jmaher DONTBUILD
Triggered by the platform name change in bug 1673071 when macOS switched to
running its tests with WebRender enabled.

Differential Revision: https://phabricator.services.mozilla.com/D99095
2020-12-08 15:17:47 +00:00
David Major c0208a72b1 Bug 1681123 - Bump mingw-w64 revision to fix _aligned_malloc in clang 12 r=tjr
clang 12 (specifically https://reviews.llvm.org/D91379) made some refactorings to libc++ that exposed a problem in the MinGW headers. That has now been fixed upstream.

In the meantime the headers also gained definitions for ProcessPayloadRestrictionPolicy, so we can remove our workaround for that.

Differential Revision: https://phabricator.services.mozilla.com/D98945
2020-12-07 17:55:27 +00:00
Tom Ritter 7fe2cdbb1f Bug 1678777 - Only run puppeteer on every 10th push r=whimboo
Differential Revision: https://phabricator.services.mozilla.com/D98811
2020-12-07 12:13:35 +00:00
Mike Hommey 54a7eeb436 Bug 1680678 - Upgrade builds to Xcode 12.2 final's SDK. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D98712
2020-12-04 14:16:51 +00:00
Mitchell Hentges e977945eea Bug 1679616: Include python[3]-dev in static-analysis-build image r=sylvestre
To build native python packages, the python dev packages are needed.
This should resolve the psutil installation failure.

Differential Revision: https://phabricator.services.mozilla.com/D98197
2020-12-04 16:20:37 +00:00
Tarek Ziadé 0269049986 Bug 1672142 - Add perf test for the controlled website r=sparky,dragana
Differential Revision: https://phabricator.services.mozilla.com/D94089
2020-12-04 14:56:43 +00:00
Mitchell Hentges 984958944e Bug 1661153: Removes _ensure_zstd() and usages r=firefox-build-system-reviewers,glandium
Removes a bunch of zstandard installations that were ran from
within the mach virtualenv, which should already have zstandard
installed.

Differential Revision: https://phabricator.services.mozilla.com/D98387
2020-12-03 22:58:52 +00:00
Mike Hommey 3d99e68faf Bug 1680461 - Fixup for bug 1680172: Keep building geckodriver for linux with rustc 1.47. r=glandium CLOSED TREE
rather than the Android builds, which we restore to 1.48, effectively
backing out changeset 6c5df06cb71b.

Differential Revision: https://phabricator.services.mozilla.com/D98578
2020-12-03 11:30:38 +00:00
Julien Cristau 22ce6875e7 Bug 1680028 - run l10n-bumper daily instead of hourly. r=releng-reviewers,jmaher,aki
To ensure l10n updates are still picked up by beta builds in a timely
fashion, remove "DONTBUILD" from commit messages when running on
mozilla-beta, and run a couple of hours before the "daily-releases" job
starts.

Differential Revision: https://phabricator.services.mozilla.com/D98349
2020-12-02 20:22:57 +00:00
Narcis Beleuzu f56c880086 Bug 1680172 - Fix Android Btime failure. r=glandium CLOSED TREE 2020-12-03 10:10:57 +02:00
Bogdan Tara 5669c53aa8 Merge mozilla-central to autoland a=merge 2020-12-03 06:57:18 +02:00
Cosmin Sabou fc64a95f3a Backed out changeset f1d785de7ab3 (bug 1661153) for causing symbols bustages. a=backout. 2020-12-03 00:49:17 +02:00
Mike Hommey 68c2abfa6c Bug 1680172 - Fixup #2: Keep building fix-stacks with rust 1.47 CLOSED TREE
For the same reason as dump-syms.

Differential Revision: https://phabricator.services.mozilla.com/D98553
2020-12-03 02:27:07 +00:00
Mike Hommey fba6ec43e7 Bug 1680185 - Add openh264 builds for Apple silicon mac. r=firefox-build-system-reviewers,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D98427
2020-12-02 22:26:03 +00:00
Mike Hommey 8d18757970 Bug 1680182 - Use dump-syms toolchain rather than tooltool artifact. r=firefox-build-system-reviewers,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D98426
2020-12-02 22:26:26 +00:00
Mike Hommey b7e6c5660f Bug 1680183 - Make dump-syms binary compatible with older libstdc++. r=firefox-build-system-reviewers,mhentges
This will allow to run it on older systems without LD_LIBRARY_PATH
tricks.

Differential Revision: https://phabricator.services.mozilla.com/D98425
2020-12-02 22:26:26 +00:00
Mike Hommey 12679da6a0 Bug 1680152 - Bump macos SDK to 10.12. r=spohl,firefox-build-system-reviewers,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D98421
2020-12-02 21:50:28 +00:00
Mike Hommey 5543e97235 Bug 1680172 - Upgrade builders to rustc 1.48. r=firefox-build-system-reviewers,dmajor
We keep dump-syms on 1.47 because it breaks at runtime when built with
1.48. It also puts it in sync with other toolchains that won't upgrade
until we need them to.

Differential Revision: https://phabricator.services.mozilla.com/D98422
2020-12-02 22:12:04 +00:00
Gregory Mierzwinski 8651d29de5 Bug 1676703 - Fail visual-metrics tasks if a zero is reported in the metrics. r=perftest-reviewers,AlexandruIonescu
This patch makes vismet tasks fail when the *Index metrics are reported as zero.

Differential Revision: https://phabricator.services.mozilla.com/D96735
2020-12-02 17:22:39 +00:00
Kimberly Sereduck 4958438156 Bug 1674851 - Add chromedriver for Chrome 87 r=perftest-reviewers,sparky
Differential Revision: https://phabricator.services.mozilla.com/D98357
2020-12-02 17:12:51 +00:00
Steve Fink 3d02a92acd Bug 1680159 - Do not collect source code during automated hazard analysis. r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D98409
2020-12-02 16:22:40 +00:00
Mitchell Hentges 4184bca3d4 Bug 1661153: Removes _ensure_zstd() and usages r=firefox-build-system-reviewers,glandium
The zstandard package is always installed in the mach virtualenv.
The patch assumes that zstandard is only used from the mach virtualenv,
and never the build virtualenv.

Differential Revision: https://phabricator.services.mozilla.com/D98387
2020-12-02 15:16:14 +00:00
Christian Holler 119d129332 Bug 1677049 - Add mochitest-browser-chrome to the TSan test set. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D98451
2020-12-02 12:41:31 +00:00
Butkovits Atila de782976bf Backed out changeset 5153f0eaf518 (bug 1676533) as requested by glandium. CLOSED TREE 2020-12-02 07:58:47 +02:00
Mike Hommey 72cc842ad5 Bug 1671545 - Require at least rustc 1.47.0 to build. r=firefox-build-system-reviewers,dmajor
And remove the rust 1.43 toolchain, now it's not used anymore.

Differential Revision: https://phabricator.services.mozilla.com/D93733
2020-12-02 00:01:56 +00:00
Mike Hommey 14c1084f72 Bug 1679938 - Don't recurse the build into mfbt for projects that don't need it. r=firefox-build-system-reviewers,mhentges
While all toolkit and js-based projects make use of mfbt, some others,
like tools/crashreporter and tools/update-packaging, don't.

So instead of including mfbt from the top-level directory, include it
from the relevant project top-level mozbuilds.

This allows to remove the dependency on mfbt files in the hash for the
minidump-stackwalk and mar-tools toolchains.

Differential Revision: https://phabricator.services.mozilla.com/D98378
2020-12-01 23:52:03 +00:00
Alexis Beingessner e2c5b3cbbe Bug 1680124 - Document Rust builds (and add some pointers/links for clang ones). r=dmajor
Differential Revision: https://phabricator.services.mozilla.com/D98386
2020-12-01 23:55:34 +00:00
Csoregi Natalia e1c9e65ec1 Backed out changeset 9bd89da852cf (bug 1680028) for causing gecko decision tasks to fail. CLOSED TREE 2020-12-01 21:34:50 +02:00
Julien Cristau 40bf7ed8c2 Bug 1680028 - run l10n-bumper daily instead of hourly. r=releng-reviewers,jmaher
To ensure l10n updates are still picked up by beta builds in a timely
fashion, remove "DONTBUILD" from commit messages when running on
mozilla-beta, and run a couple of hours before the "daily-releases" job
starts.

Differential Revision: https://phabricator.services.mozilla.com/D98349
2020-12-01 18:52:23 +00:00
Razvan Maries 1e986258d1 Backed out changeset f5532b7dc480 (bug 1672181) as per Gregory's request. CLOSED TREE 2020-12-01 17:12:11 +02:00
Julien Cristau 025ffb9f0a Bug 1677755 - turn the mac devedition build into a universal binary with x86-64 + aarch64. r=glandium DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D97347
2020-12-01 08:27:57 +00:00
Mike Hommey 5df4c50570 Bug 1679923 - Upgrade rustc to 1.49 beta 2 for arm64 mac builds. r=firefox-build-system-reviewers,dmajor
At the same time, remove the macosx64-rust-beta toolchain, unused since
bug 1678154.

Differential Revision: https://phabricator.services.mozilla.com/D98277
2020-12-01 03:53:16 +00:00
Mike Hommey 5a48880a05 Bug 1679924 - Setup plain debug mac builds on automation. r=firefox-build-system-reviewers,dmajor
Bug 1672888 set up a plain opt build that runs on m-c only, like the
other plain opt builds. It didn't add plain debug builds on integration
branches as well to avoid having too many jobs running on the slim
mac worker pool, but since bug 1678154 moved most jobs off them, we can
now add those.

Differential Revision: https://phabricator.services.mozilla.com/D98279
2020-12-01 03:56:19 +00:00
David Major fc89cd6438 Bug 1679909 - Use PATH instead of -B in build-compiler-rt.sh r=glandium
As of version 12, clang doesn't accept `-B` for target-prefixed binaries. This is said to be for GCC compatibility: 3452a0d8c1

Differential Revision: https://phabricator.services.mozilla.com/D98261
2020-12-01 04:32:55 +00:00
Sebastian Hengst c42742a46b Bug 1679886 - increase max task run time for Android profile generation to 45 minutes. r=aerickson DONTBUILD
It exceeded the timeout frequently after being close to it before.

Differential Revision: https://phabricator.services.mozilla.com/D98246
2020-11-30 22:59:04 +00:00
Jeff Gilbert 637fafc5a7 Bug 1662516 - Enable m-gli on Linux. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D95096
2020-11-30 18:13:19 +00:00
Andrew Halberstadt 6db2921d7f Bug 1672181 - [taskgraph] Make test tasks py3 by default and add a py2 override r=bc,bhearsum
Differential Revision: https://phabricator.services.mozilla.com/D97669
2020-11-26 17:42:27 +00:00
stransky 114cd41e5a Bug 1665844 [Wayland] Fix mutter to start in Wayland mode in Mozilla automation, r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D97161
2020-11-30 07:10:57 +00:00
Bogdan Tara 168c45a7ac Backed out changeset 951e6717abf4 (bug 1662516) for M-gli failures CLOSED TREE 2020-11-30 09:19:00 +02:00
Jeff Gilbert a10a4ccb9e Bug 1662516 - Enable m-gli on Linux. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D95096
2020-11-30 05:44:33 +00:00
Sylvestre Ledru be678a9be7 Bug 1588710 - Try to use clang 11 for stackwalk r=firefox-build-system-reviewers,andi,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D97568
2020-11-28 13:34:01 +00:00
Ricky Stewart 34344a8073 Bug 1661624 - Include `psutil` in the `mach` `virtualenv`s r=firefox-build-system-reviewers,rstewart
Install `psutil` when setting up the `mach` `virtualenv`s and stop importing the in-tree version in the build.

Nothing in-tree currently assumes or mandates the installation of `psutil` (all uses of `psutil` are guarded with imports of the form `try : import psutil; except ImportError: psutil = None`), so there's no back-incompatibility concerns here. There will be an awkward period where telemetry will be lacking CPU/disk data for everyone until they re-run `mach bootstrap` or `mach create-mach-environment`, but that will come back as people gradually update their `virtualenv`s.

An alternative to circumvent that issue is REQUIRING that `psutil` be installed by adding an assertion in `mach` that `psutil` can be found (allowing us to remove all the conditional logic in-tree around whether `psutil` is installed), but I wouldn't claim that we're ready to do that and deal with whatever fallout might occur.

Differential Revision: https://phabricator.services.mozilla.com/D90914
2020-11-27 21:05:00 +00:00
Mike Hommey e68c3c3d3b Bug 1678451 - Split the Ubuntu test image and work around recent issues. r=releng-reviewers,bhearsum
To avoid breakage from Ubuntu package upgrades, we split the test image
into two, one that sets up the packages only, and that won't change when
we need to update our scripts, and another that derives from it, that
adds all our scripts and other setup.

Additionally, we work around the recent timeout issues due to the
upgrade of packages.

The timeout itself is due to gst-launch waiting indefinitely when it
crashes, rather than exiting with an error code. Bug 1679491 addresses
this issue, but the core problem is that gst-launch crashes, which seems
to be that some change in libc (presumably "Fix pthread_rwlock_try*lock
stalls") turns `gst_object_unref: assertion '((GObject *)
object)->ref_count > 0' failed` fatal warnings (which were already
happening) into actual crashes (presumably because a race condition is
lost on a use-after-free).

This workaround, however, will stop working as soon as the updated libc
package migrates from bionic-updates into bionic proper, presumaby on
the next 18.04 dot-release. Hopefully, we won't be rebuilding the base
image for a while, avoiding further problems. Eventually, we'll want to
upload the base image to docker hub so that it's set in stone, and
change the FROM in the base image to use that instead.

Differential Revision: https://phabricator.services.mozilla.com/D98045
2020-11-27 16:34:50 +00:00
Razvan Maries 960c5da1e7 Backed out changeset a39c15378e6f (bug 1672181) for Mochitest perma failures. CLOSED TREE 2020-11-26 19:38:22 +02:00
Andrew Halberstadt 5e91379180 Bug 1672181 - [taskgraph] Make test tasks py3 by default and add a py2 override r=bc,bhearsum
Differential Revision: https://phabricator.services.mozilla.com/D97669
2020-11-20 21:45:17 +00:00
Olivier Tilloy 75b4e18676 Bug 1677781 - add the mpris slot to snapcraft.yaml to enable media controls. r=jlorenzo
Differential Revision: https://phabricator.services.mozilla.com/D97889
2020-11-26 10:47:42 +00:00
Mike Hommey d6a8360a45 Bug 1677022 - Followup to unbust toolchain tasks with no arguments.
Differential Revision: https://phabricator.services.mozilla.com/D97974
2020-11-26 01:52:30 +00:00
Alexis Beingessner a2e4c21db2 Bug 1677593 - Add support for building rust from source. r=glandium
This adds a linux64-rust-dev toolchain and a git fetch of rust-lang/rust
that it can source from (stable tag for 1.47).

There are some issues with cross-compiling, so for now the toolchain only
builds a host build, although a lot of the machinery for cross compiling is
there for anyone brave/desperate enough to get it working.

Also note some changes were made to Rust's config.toml between 1.47 and 1.50,
so some version detection may need to be added in the future.

There is experimental support for providing patches via a new --patch flag.

Additionally, I documented the existence of the "bors-" mode.

Differential Revision: https://phabricator.services.mozilla.com/D97497
2020-11-26 00:42:27 +00:00
Cristina Coroiu f795b6e3c2 Backed out 2 changesets (bug 1654817) on request by aklotz
Backed out changeset bf721cd8ab14 (bug 1654817)
Backed out changeset fb1c314e6394 (bug 1654817)
2020-11-23 19:12:29 +02:00
Andi-Bogdan Postelnicu ccbacf12e5 Bug 1678399 - Make clang-tidy-external part of our clang-tidy suit. r=freddyb
Differential Revision: https://phabricator.services.mozilla.com/D97643
2020-11-23 08:30:49 +00:00
Mike Hommey 9eae3b523e Bug 1678485 - Enable PGO on arm64 mac builds. r=firefox-build-system-reviewers,andi,rstewart
Differential Revision: https://phabricator.services.mozilla.com/D97749
2020-11-20 15:16:14 +00:00
Ricky Stewart c9720a8ee7 Bug 1676533 - Consult the base revision for file hashes instead of the on-disk files in `mach artifact` r=ahal
This enables `mach artifact` and `mach bootstrap` to not fail due to local changes.

Differential Revision: https://phabricator.services.mozilla.com/D96892
2020-11-20 18:58:51 +00:00
Joel Maher 37e2c77538 Bug 1677640 - remove windows7 talos-webgl-gli. r=sparky
remove windows7 talos-webgl-gli test from being scheduled.

Differential Revision: https://phabricator.services.mozilla.com/D97685
2020-11-20 14:08:57 +00:00
Mike Hommey 9604340588 Bug 1678154 - Change aarch64 macos builds to be more like the x86_64 ones. r=firefox-build-system-reviewers,dmajor
This also removes some differences between some json files in test
archives.

Differential Revision: https://phabricator.services.mozilla.com/D97700
2020-11-20 03:14:15 +00:00
Mike Hommey ffd412896c Bug 1678154 - Create a clang repack including the aarch64 mac compiler-rt. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D97699
2020-11-20 01:54:33 +00:00
Mike Hommey 323c368072 Bug 1678154 - Enable aarch64 mac support to llvm-dsymutil. r=firefox-build-system-reviewers,dmajor
While here, upgrade it to LLVM 11.

Differential Revision: https://phabricator.services.mozilla.com/D97697
2020-11-20 02:09:20 +00:00
Mike Hommey f27976b952 Bug 1678154 - Build compiler-rt for aarch64 macos. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D97696
2020-11-20 03:18:15 +00:00
Mike Hommey d015ddb9b6 Bug 1678154 - Add aarch64-prefixed binaries to cctools. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D97695
2020-11-20 03:19:36 +00:00
Mike Hommey 4efa8e2b00 Bug 1678154 - Pack the mac OS SDK as a private artifact. r=firefox-build-system-reviewers,nalexander
Differential Revision: https://phabricator.services.mozilla.com/D97694
2020-11-20 00:03:13 +00:00
Mike Hommey 03bc6afe15 Bug 1677914 - Don't require the SHELL variable to be set. r=firefox-build-system-reviewers,mhentges
And don't set SHELL on mac workers (added in da452e43b5d5 because of the
exception thrown by this code not having a fallback)

Differential Revision: https://phabricator.services.mozilla.com/D97686
2020-11-19 22:43:05 +00:00
Mike Hommey a6418700d5 Bug 1678439 - Upgrade rustc to 1.49 beta for arm64 mac builds. r=firefox-build-system-reviewers,dmajor
Differential Revision: https://phabricator.services.mozilla.com/D97666
2020-11-19 20:27:01 +00:00
Andrew Creskey bbfaa4e2e8 Bug 1677617 - Disable the fenix MAIN test r=sparky
The test will no longer run on commits until we can resolve the failure, which is blocked on a Fenix issue.
https://github.com/mozilla-mobile/fenix/issues/13470

Differential Revision: https://phabricator.services.mozilla.com/D97226
2020-11-19 15:33:05 +00:00
Gregory Mierzwinski b92c9ca167 Bug 1677119 - Fix run-on-projects settings for the live site tests. r=perftest-reviewers,AlexandruIonescu
Differential Revision: https://phabricator.services.mozilla.com/D97592
2020-11-19 14:53:03 +00:00
Johan Lorenzo c83718f66d Bug 1676130 - part 1: Backed out changeset 19db5464f5d1 (bug 1668908) r=jcristau
Differential Revision: https://phabricator.services.mozilla.com/D96409
2020-11-19 13:31:00 +00:00
Frederik Braun 8ace599a12 Bug 1678295 - move civet to clang 11 r=andi
Differential Revision: https://phabricator.services.mozilla.com/D97562
2020-11-19 12:47:58 +00:00
Razvan Maries fa10d6af82 Backed out changeset 684580bcc087 (bug 1672704) for Gecko Decision Task bustage. CLOSED TREE 2020-11-19 07:00:39 +02:00
Jean-Yves Avenard 6c4d6a6510 Bug 1672704 - Disable sanity test with talos. r=mattwoodrow
Differential Revision: https://phabricator.services.mozilla.com/D94920
2020-11-18 15:28:27 +00:00
Razvan Maries 4ce2cfb03a Backed out changeset bc0c64106daa (bug 1665844) for automation errors. CLOSED TREE 2020-11-19 01:10:48 +02:00
Aki Sasaki 4ac4b1acab Bug 1677914 - add SHELL env var to mac builders. r=taskgraph-reviewers,jmaher DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D97469
2020-11-18 20:51:27 +00:00
stransky 6e0f22f7e9 Bug 1665844 [Wayland] Fix mutter to start in Wayland mode in Mozilla automation, r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D97161
2020-11-18 20:30:05 +00:00
Andrew Halberstadt fbeb7bbe02 Bug 1672967 - [taskgraph.action] Ensure we copy the task definition when retriggering backfills, r=taskgraph-reviewers,jmaher
Backfill tasks might run with a slightly different definition than the task
with the same label in the current task graph. When we encounter them, ensure
we create a new task with an (almost) identical definition, rather than
grabbing it from the current push's full-task-graph.json.

There's already an action that has this behaviour (that is used for the
decision task). So rather than re-implement this behaviour in the regular
retrigger action, this patch ensures that the 'retrigger-decision' action
applies to backfills rather than the regular one.

Differential Revision: https://phabricator.services.mozilla.com/D97352
2020-11-18 16:45:56 +00:00
Andrew Halberstadt 43e87a2037 Bug 1672967 - [taskgraph.action] Fix bug in actions lookup, r=taskgraph-reviewers,jmaher
According to the documentation, actions are supposed to have an "order" system,
where the first action that applies to a task via its context, is supposed to
take precedence. But when running the match algorithm, we never break out of
the loop. So we end up applying the *last* action that matches a tasks' context.

As far as I can tell, this means we have been using the 'retrigger-disabled'
action for everything and things like retriggering Decision tasks don't work.

Differential Revision: https://phabricator.services.mozilla.com/D97351
2020-11-18 16:49:11 +00:00
Andrew Halberstadt 095481e67d Bug 1672967 - [taskgraph.action] Don't proceed with creating task if 'test_manifest_modifier' failed, r=taskgraph-reviewers,jmaher
If we aren't able to assign the appropriate manifests to the backfill, the
backfill is useless. Let's just let the exception propagate and fail loudly,
rather than log an error and keep going.

Differential Revision: https://phabricator.services.mozilla.com/D97350
2020-11-17 20:31:30 +00:00
Cristina Coroiu e1be39b9e8 Backed out changeset 101792a18a59 (bug 1676533) on request by Ricky for causing regressions 2020-11-18 18:10:04 +02:00
Joel Maher 6f2b0274a7 Bug 1677640 - reduce scheduling of win32 perf tests on integration and release branches. r=sparky
remove default scheduling of talos, raptor, awsy on windows7-32.  Ensure these are still available on try server.  There is one exception, the talos-webgl-gli job, this is scheduled via a transform and I would rather leave that alone or remove all gli tests.

Differential Revision: https://phabricator.services.mozilla.com/D97310
2020-11-18 00:16:55 +00:00
Jeff Gilbert 6d3ebf06f8 Bug 1607940 - Extend m-gli variant use until 2021-02-01. r=jmaher DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D97373
2020-11-17 22:01:02 +00:00
Mike Hommey 909363e1da Bug 1677473 - Add missing test archive to mac universal build artifacts. r=firefox-build-system-reviewers,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D97238
2020-11-17 15:57:42 +00:00
Rob Lemley 0a1e4da703 Bug 1677794 - Remove sm-nowarp-jit from ridealong linux64 try builds. r=firefox-build-system-reviewers,dmajor
sm-nowarp-jit was removed from spidermonkey/linux.yml in bug 1673553.

Differential Revision: https://phabricator.services.mozilla.com/D97339
2020-11-17 18:08:03 +00:00
Ricky Stewart ddc8d97c34 Bug 1676533 - Consult the base revision for file hashes instead of the on-disk files in `mach artifact` r=ahal
This enables `mach artifact` and `mach bootstrap` to not fail due to local changes.

Differential Revision: https://phabricator.services.mozilla.com/D96892
2020-11-16 18:51:03 +00:00
Andi-Bogdan Postelnicu e9fbba867c Bug 1666550 - Update `clang-tools` to `clang-11`. r=dmajor
Differential Revision: https://phabricator.services.mozilla.com/D97137
2020-11-17 15:04:14 +00:00
Noemi Erli e0fd535990 Backed out changeset c5f7092adb7a (bug 1665844) for causing mass mochitest automation errors CLOSED TREE 2020-11-17 05:50:06 +02:00
Mike Hommey 824a5891ad Bug 1677023 - Set UPLOAD_DIR on generic-worker like we do for docker_worker. r=taskgraph-reviewers,jmaher
Differential Revision: https://phabricator.services.mozilla.com/D96964
2020-11-16 23:51:30 +00:00
Mike Hommey 5bfabfaaf1 Bug 1677022 - Allow to run toolchain tasks on mac workers. r=taskgraph-reviewers,aki
By using a string instead of list for the command, we leave it to
the run-task transform to wrap with bash, which we don't need to do
ourselves anymore.

Differential Revision: https://phabricator.services.mozilla.com/D96963
2020-11-16 23:51:30 +00:00
Mike Hommey eb485ced35 Bug 1677020 - Always cap try tasks to a 28 days expiry. r=taskgraph-reviewers,jmaher
Currently, if a task defines its own expiry with a very large value,
that will be respected even on try, where we actually don't want that to
happen.

This also helps simplify the setup for docker images.

We also take on the occasion to remove the discrepancy between the
default expiry for tasks in general and tests in particular. Bug 1258497
set the original expiry to 14 days, bug 1281004 added another place
where the expiry was set to 14 days for tests specifically, and then bug
1304180 changed the expiry to 28 days, but it just seems the location
for tests was overlooked rather than deliberately left to 14 days.

Differential Revision: https://phabricator.services.mozilla.com/D96962
2020-11-16 23:51:22 +00:00
Mike Hommey 82a882888d Bug 1543149 - Use `mach python` to run mozharness build script and remove PYTHONPATH hack. r=releng-reviewers,aki
Also fix the gecko path on extra-config-path flags on mac tasks
(currently not causing problems because unused).

And while here, we switch to python3.

Differential Revision: https://phabricator.services.mozilla.com/D96961
2020-11-13 18:32:28 +00:00
stransky 370bfbe6bc Bug 1665844 [Wayland] Fix mutter to start in Wayland mode in Mozilla automation, r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D97161
2020-11-16 18:52:09 +00:00
Gregory Mierzwinski c7a02fda76 Bug 1677478 - Disable conditioned profiles on mobile browsertime. r=aryx DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D97174
2020-11-16 22:46:19 +00:00
Mike Hommey ff50994089 Bug 1672888 - Setup plain mac builds on automation. r=firefox-build-system-reviewers,mhentges
Differential Revision: https://phabricator.services.mozilla.com/D96958
2020-11-13 14:22:08 +00:00
Ben Hearsum 390a288378 Bug 1677550: Native ARM64 Mac Nightly Fails to Update r=aki
Differential Revision: https://phabricator.services.mozilla.com/D97217
2020-11-16 20:48:21 +00:00
Alexis Beingessner 9a0f581986 Bug 1671691 - Enable Rust stdlib instrumentation. r=decoder
* Bumps the tsan toolchain to rust-nightly-2020-11-14 that has my patches to make -Zbuild-std work in vendored environments:
  * https://github.com/rust-lang/cargo/pull/8834
  * https://github.com/rust-lang/rust/pull/78790

* Passes -Zbuild-std to cargo when MOZ_TSAN is defined (mk_add_options --enable-thread-sanitizer)

* Removes generic Rust supressions and adds much more specific ones
    * One presumed upstream false positive from tsan not understanding the code
    * One actual upstream bug tsan found (yay!)
    * One new real issue uncovered
    * One issue that probably already existed intermittently but I happened to hit

Differential Revision: https://phabricator.services.mozilla.com/D97165
2020-11-16 18:36:41 +00:00
Bob Clary f53d2424e1 Bug 1675330 - Do not use exception tasks when replacing tasks using index-search. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D96565
2020-11-16 18:18:43 +00:00
Ben Hearsum 7a641114f3 Bug 1677550: Native ARM64 Mac Nightly Fails to Update r=aki
This patch adjusts the BCJ options for macOS builds to avoid using
optimizations that only work on x86/x86_64.

Differential Revision: https://phabricator.services.mozilla.com/D97196
2020-11-16 18:13:15 +00:00
Noemi Erli f24bd4fcff Backed out 4 changesets (bug 1666345, bug 1661624, bug 1667152, bug 1666347) for causing mochitest failures CLOSED TREE
Backed out changeset 8ce536574e74 (bug 1666347)
Backed out changeset 7cc5b13a3bf6 (bug 1666345)
Backed out changeset e112876ba18b (bug 1661624)
Backed out changeset 0f03ce337449 (bug 1667152)
2020-11-16 21:06:12 +02:00
Ricky Stewart d8119e6288 Bug 1661624 - Include `psutil` in the `mach` `virtualenv`s r=firefox-build-system-reviewers,mhentges
Install `psutil` when setting up the `mach` `virtualenv`s and stop importing the in-tree version in the build.

Nothing in-tree currently assumes or mandates the installation of `psutil` (all uses of `psutil` are guarded with imports of the form `try : import psutil; except ImportError: psutil = None`), so there's no back-incompatibility concerns here. There will be an awkward period where telemetry will be lacking CPU/disk data for everyone until they re-run `mach bootstrap` or `mach create-mach-environment`, but that will come back as people gradually update their `virtualenv`s.

An alternative to circumvent that issue is REQUIRING that `psutil` be installed by adding an assertion in `mach` that `psutil` can be found (allowing us to remove all the conditional logic in-tree around whether `psutil` is installed), but I wouldn't claim that we're ready to do that and deal with whatever fallout might occur.

Differential Revision: https://phabricator.services.mozilla.com/D90914
2020-11-13 20:21:45 +00:00
Gregory Mierzwinski df3b9c9835 Bug 1677503 - Disable conditioned profiles for desktop. r=aryx DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D97171
2020-11-16 15:59:05 +00:00
Dzmitry Malyshau 67a1f9eb04 Bug 1629357 - Make WebGPU dependent on WebRender feature r=aosmond
WebGPU itself doesn't care about WebRender or even the GPU process.
However, the presentation to canvas as written today only works with WebRender, so
it seems fine to have it as a dependency in general.

An alternative could be to just fail getContext() call if webrender is disabled.

Differential Revision: https://phabricator.services.mozilla.com/D70888
2020-11-16 15:25:39 +00:00
Dzmitry Malyshau 997b81e57e Bug 1677233 - Fix windows7-32-qr jobs r=gw
Differential Revision: https://phabricator.services.mozilla.com/D97060
2020-11-16 14:58:51 +00:00
James Graham ce553ffb6c Bug 1677084 - Run wpt tests on mac qr configurations, r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D97145
2020-11-16 14:05:26 +00:00
Jan de Mooij 7f3a15f80c Bug 1673553 part 2 - Remove Warp shell flags and Treeherder jobs. r=iain,jmaher
A bit counterintuitive because we're keeping Warp and not Ion, but it's easiest
to make this change and later potentially rename the Ion prefs to Warp prefs.

Depends on D96987

Differential Revision: https://phabricator.services.mozilla.com/D96988
2020-11-13 18:21:18 +00:00
Mihai Alexandru Michis 06103d0e92 Backed out 3 changesets (bug 1666345, bug 1667152, bug 1661624) for causing mochitest timeouts.
CLOSED TREE

Backed out changeset baa1f7a615e4 (bug 1666345)
Backed out changeset b6646baa866d (bug 1661624)
Backed out changeset e4d550db6037 (bug 1667152)
2020-11-13 22:14:45 +02:00
Ben Hearsum 2cebc89f5f Bug 1648832: Make updater/Balrog support AArch64 macOS. r=aki
Differential Revision: https://phabricator.services.mozilla.com/D97028
2020-11-13 18:41:56 +00:00
Ricky Stewart 69321f149f Bug 1661624 - Include `psutil` in the `mach` `virtualenv`s r=firefox-build-system-reviewers,mhentges
Install `psutil` when setting up the `mach` `virtualenv`s and stop importing the in-tree version in the build.

Nothing in-tree currently assumes or mandates the installation of `psutil` (all uses of `psutil` are guarded with imports of the form `try : import psutil; except ImportError: psutil = None`), so there's no back-incompatibility concerns here. There will be an awkward period where telemetry will be lacking CPU/disk data for everyone until they re-run `mach bootstrap` or `mach create-mach-environment`, but that will come back as people gradually update their `virtualenv`s.

An alternative to circumvent that issue is REQUIRING that `psutil` be installed by adding an assertion in `mach` that `psutil` can be found (allowing us to remove all the conditional logic in-tree around whether `psutil` is installed), but I wouldn't claim that we're ready to do that and deal with whatever fallout might occur.

Differential Revision: https://phabricator.services.mozilla.com/D90914
2020-11-13 03:03:33 +00:00
Cristina Coroiu 16460d64d1 Merge mozilla-central to autoland a=merge. CLOSED TREE 2020-11-13 18:45:40 +02:00
Cristina Coroiu 625f0008fd Merge autoland to mozilla-central a=merge 2020-11-13 18:20:41 +02:00
Dorel Luca 44e6dfd7e0 Merge autoland to mozilla-central. a=merge 2020-11-13 11:58:20 +02:00
Andrew Osmond 14c1a2a995 Bug 1676925 - Remove code supporting the defunct WebRender experiments. r=jrmuizel,marionette-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D96943
2020-11-13 05:40:10 +00:00
Mike Hommey 14c18cae4f Bug 1675740 - Republish one more file to make beetmover happy. r=me,a=bustage 2020-11-13 13:14:44 +09:00
Mike Hommey 537689499d Bug 1675740 - Republish more files to make beetmover happy. r=me,a=bustage 2020-11-13 10:33:17 +09:00
smolnar 1e6e466d99 Backed out 4 changesets (bug 1666347, bug 1667152, bug 1661624, bug 1666345) for causing mingw bustage. CLOSED TREE
Backed out changeset 19f707f5c097 (bug 1666347)
Backed out changeset 3732ee259759 (bug 1666345)
Backed out changeset 353d3c9e74b9 (bug 1661624)
Backed out changeset a651515586a8 (bug 1667152)
2020-11-12 19:55:58 +02:00
Steve Fink 2c0345bdaf Bug 1672428 - Remove hazard-analysis.sh r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D95467
2020-11-12 20:12:28 +00:00
Steve Fink 5daa65c47f Bug 1672428 - Run a self-test before doing the actual analysis. r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D95442
2020-11-12 20:00:24 +00:00
Steve Fink 07550f5718 Bug 1672428 - Switch the actual analysis to mach r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D95441
2020-11-12 19:58:16 +00:00
Steve Fink d235350b21 Bug 1672428 - Remove a layer of mapping from "project" to "application" r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D95438
2020-11-12 19:26:26 +00:00
Steve Fink 4d6b3ec016 Bug 1672428 - Allow simultaneous browser and shell instances of the hazard analysis r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D95436
2020-11-12 19:26:12 +00:00
Steve Fink 2ba95a258e Bug 1672428 - Use `mach hazards build-shell` for actual hazard job JS shell r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D95094
2020-11-12 19:26:06 +00:00
Tom Ritter c66c67c6df Bug 1674914 - Switch the verify-updatebot script to the autoland API r=sheehan DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D96724
2020-11-12 16:33:20 +00:00
Alexis Beingessner d1d354bb8f Bug 1674773 - make tsan builds use consistent flags. r=rstewart
This makes --enable-thread-sanitizer turn on Rust tsan (-Zsanitizer=thread).
This requires changing SpiderMonkey tsan to use the tsan rust nightly.

In future changes, more Rust tsan integration will key off of MOZ_TSAN.

Differential Revision: https://phabricator.services.mozilla.com/D96453
2020-11-10 21:11:37 +00:00
Andrew Halberstadt c4b40283ab Bug 1676946 - [taskgraph] Fix invalid os value in util.chunking.guess_mozinfo_from_task, r=taskgraph-reviewers,aki
The value for 'info["os"]' is "win" not "windows". As set further up in this
function.

Differential Revision: https://phabricator.services.mozilla.com/D96903
2020-11-12 20:48:06 +00:00
Frederik Braun 6446264f93 Bug 1666808 - enable code-review for external clang-tidy r=tjr,andi,marco
Differential Revision: https://phabricator.services.mozilla.com/D91149
2020-11-13 11:49:51 +00:00
Ricky Stewart 55f90afcca Bug 1661624 - Include `psutil` in the `mach` `virtualenv`s r=firefox-build-system-reviewers,mhentges
Install `psutil` when setting up the `mach` `virtualenv`s and stop importing the in-tree version in the build.

Nothing in-tree currently assumes or mandates the installation of `psutil` (all uses of `psutil` are guarded with imports of the form `try : import psutil; except ImportError: psutil = None`), so there's no back-incompatibility concerns here. There will be an awkward period where telemetry will be lacking CPU/disk data for everyone until they re-run `mach bootstrap` or `mach create-mach-environment`, but that will come back as people gradually update their `virtualenv`s.

An alternative to circumvent that issue is REQUIRING that `psutil` be installed by adding an assertion in `mach` that `psutil` can be found (allowing us to remove all the conditional logic in-tree around whether `psutil` is installed), but I wouldn't claim that we're ready to do that and deal with whatever fallout might occur.

Differential Revision: https://phabricator.services.mozilla.com/D90914
2020-11-12 15:58:05 +00:00
Brindusan Cristian 0f710bf462 Backed out changeset 2052e35c9932 (bug 1638365) for performance regressions as requested by alexandrui on irc. CLOSED TREE 2020-11-12 14:31:20 +02:00
Mike Hommey 2c3e9aa3e9 Bug 1675740 - Replace the mac shippable build with a build that unifies a x86_64 and an aarch64 build. r=firefox-build-system-reviewers,rstewart
Differential Revision: https://phabricator.services.mozilla.com/D96691
2020-11-12 05:40:42 +00:00
Mike Hommey 9f6f422cd2 Bug 1675740 - Allow to skip the upload-symbols tasks. r=taskgraph-reviewers,aki
Differential Revision: https://phabricator.services.mozilla.com/D96782
2020-11-12 04:35:48 +00:00
Lars T Hansen 9ae09ac9bb Bug 1674722 - Update raptor options for wasm tests. r=perftest-reviewers,AlexandruIonescu
The pref name has changed from wasm_ionjit to wasm_optimizingjit
(partly to accomodate macOS, partly because this is better for the
current architecture).  So rename the prefs, and also rename the tests
to reflect this reality.  A PR has been submitted to update awfy.

Differential Revision: https://phabricator.services.mozilla.com/D96376
2020-11-11 12:50:33 +00:00
Lars T Hansen 7c0ad487d5 Bug 1675836 - remove two wasm-cranelift tests. r=perftest-reviewers,AlexandruIonescu
Remove two raptor tests that are obsoleted because the configuration they
test is being removed (in bug 1674722).  PR has been filed for ditto removal in awfy, https://github.com/mozilla-frontend-infra/firefox-performance-dashboards/pull/343.

Differential Revision: https://phabricator.services.mozilla.com/D96375
2020-11-11 09:10:46 +00:00
Tom Ritter 490b9e9b02 Bug 1674897 - Potentially raise an error in the updatebot verification script r=aki DONTBUILD
If we don't find any revisions in !public() - when run on autoland - then the
assumptions of the script are incorrect and we may have changed something, such
that the script starts silently succeeding even though it's not checking anything.

Differential Revision: https://phabricator.services.mozilla.com/D95591
2020-11-10 22:45:37 +00:00
Ben Hearsum 986014a362 Bug 1676493: Use v2 api for secondary balrog toplevel blob submission. r=aki DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D96624
2020-11-10 20:41:02 +00:00
Henrik Skupin ef63e6c9bb Bug 1669169 - [marionette] Add MnFr TaskCluster job to run Marionette tests with actors disabled. r=marionette-reviewers,jdescottes,jmaher,maja_zf
Differential Revision: https://phabricator.services.mozilla.com/D96466
2020-11-10 20:07:41 +00:00
Chris H-C d90a483bd2 Bug 1676097 - Add FOG Python Subsuite to TC config r=janerik
Differential Revision: https://phabricator.services.mozilla.com/D96470
2020-11-10 08:46:16 +00:00
Sebastian Hengst b6c332bb0a Bug 1665754 - skip macos silicon builds during optimization for now. a=limited-pool
Differential Revision: https://phabricator.services.mozilla.com/D96548
2020-11-10 12:27:59 +00:00
Mike Hommey af02c91f37 Bug 1665754 - Setup an Apple silicon macos build. r=firefox-build-system-reviewers,dmajor
Baby steps. This adds an unsigned non-universal Apple silicon-only macos
build.

Differential Revision: https://phabricator.services.mozilla.com/D96339
2020-11-10 08:46:22 +00:00
Tarek Ziadé 7c132a5e1b Bug 1668494 - add an influxdb layer r=sparky
Differential Revision: https://phabricator.services.mozilla.com/D92480
2020-11-10 08:36:44 +00:00
Cosmin Sabou f2556d47da Backed out 2 changesets (bug 1674773) for turning Bug 1646925 into almost permafail.
Backed out changeset acd441508a66 (bug 1674773)
Backed out changeset 89babec1b885 (bug 1674773)
2020-11-10 11:27:50 +02:00
Dave House f2a83c2f53 Bug 1665379 - Add CI workerType for apple silicon build on x86 apple hardware macosx64-aarch64/opt. r=jmaher,glandium,aki,bhearsum DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D96261
2020-11-10 03:28:22 +00:00
Alexis Beingessner 2e16b14340 Bug 1674773 - make tsan builds use consistent flags. r=rstewart
This makes --enable-thread-sanitizer turn on Rust tsan (-Zsanitizer=thread).
This requires changing SpiderMonkey tsan to use the tsan rust nightly.

In future changes, more Rust tsan integration will key off of MOZ_TSAN.

Differential Revision: https://phabricator.services.mozilla.com/D96453
2020-11-09 20:12:42 +00:00
Aaron Klotz 773de4f33a Bug 1654817: Part 1 - Convert e10s-multi transform to an e10s-single transform; r=taskgraph-reviewers,jmaher
Since e10s-multi is going to be enabled by default, this gives us the ability
to run junit in a secondary, e10s-single configuration so that we can see them
both side-by-side for a little while, at least until we're settled in with the
e10s-multi configuration.

Differential Revision: https://phabricator.services.mozilla.com/D94883
2020-11-04 17:26:14 +00:00
Gregory Mierzwinski 6dc884266f Bug 1675739 - Disable macos raptor chrome/chromium tests. r=perftest-reviewers,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D96316
2020-11-09 14:31:16 +00:00
Julian Descottes 7d26bf4638 Bug 1643717 - Promote DevTools Fission tests to tier 1 r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D96028
2020-11-09 13:08:05 +00:00
Mike Hommey c99ed8ea6e Bug 1675707 - Don't activate the virtualenv when running mozharness. r=firefox-build-system-reviewers,mhentges
When the virtualenv is activated, subprocesses of mozharness inherit the
PATH that it sets, making plain python resolve to the virtualenv python,
which is actually not desirable for builds.

Ideally, we'd avoid creating a virtualenv for mozharness entirely,
especially considering it creates its own, and then the build creates
yet another one, but that doesn't work because of PYTHONPATH interfering
with the build virtualenv.

Differential Revision: https://phabricator.services.mozilla.com/D96168
2020-11-06 14:38:15 +00:00
Sylvestre Ledru fbc7199bc1 Bug 1675705 - mozlint in the CI: also run black when touching a configure r=rstewart
Differential Revision: https://phabricator.services.mozilla.com/D96163
2020-11-06 18:50:42 +00:00
Gregory Mierzwinski 601c4f6678 Bug 1674928 - Disable Raptor-webext tests on MacOS. r=perftest-reviewers,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D95632
2020-11-05 14:26:46 +00:00
Gabriele Svelto 4b85e11596 Bug 1675263 - Refactor the scripts used to scrape Microsoft and Apple system symbols r=marco DONTBUILD
This patch changes a few different things:
- The Docker image used for both scrapers are now based off of our standard
  Debian 10 image instead of an old Ubuntu one
- Both images were changed to make it easy to work with them when an
  interactive task is used
- The python packages used by the scripts had their versions pinned and
  cryptographic hashes have been recorded so that they can be verified before
  running the task
- The dump_syms version used on Windows was bumped to include fixes that allow
  us to scrape public symbols from DLLs and EXEs that have no PDB file available
- The maximum open file limit of the Window scraper was bumped up to cope with
  runs where we gather plenty of symbols in one go
- Similarly the maximum number of symultaneous connections to a single symbol
  server has been limited to 4 to avoid being throttled
- The macOS Python tools were modified to work with Python 3

Differential Revision: https://phabricator.services.mozilla.com/D95853
2020-11-06 11:02:25 +00:00
Tom Ritter 5ab182e7e6 Bug 1674182 - Support a regex filter for./mach try auto r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D95186
2020-11-05 17:53:31 +00:00
Tarek Ziadé 83a9dd6f9f Bug 1667151 - add support for pre-compiled scipy/numpy r=sparky
This patch will make sure that we select the right
wheels for numpy and scipy when `--visualmetrics` is used,
so we don't need to compile them.

It also make sure we don't install all those packages
unless the environment wants to use visual metrics.

Differential Revision: https://phabricator.services.mozilla.com/D91740
2020-11-05 17:16:34 +00:00
Gregory Mierzwinski e18e2835c9 Bug 1670284 - Run android perf tests with webrender-enabled. r=perftest-reviewers,Bebe
This patch makes webrender-enabled testing the main method for testing and also adds a subset of tests that will without it enabled until the switch is fully complete.

Differential Revision: https://phabricator.services.mozilla.com/D95744
2020-11-05 14:28:58 +00:00
Gregory Mierzwinski 5c2926e336 Bug 1638365 - Use webdriver navigation for pageload tests. r=perftest-reviewers,Bebe
This patch upgrade browsertime to v10, enables webdriver-based navigation in browsertime tests, and also disables the Firefox WindowRecorder for a fairer comparison between Chrome and Firefox.

Differential Revision: https://phabricator.services.mozilla.com/D95425
2020-11-05 14:27:56 +00:00
Kartikaya Gupta 8aa6bf7aac Bug 1673071 - Run the full slate of test suites on macos-qr. r=jmaher,jrmuizel
This patch flips things around so that the non-QR macosx test platforms are
running a "skeleton crew" set of tests, and the QR macosx test platforms are
running all the tests that were previously running with non-QR. As of Fx83
macOS has WebRender enabled by default for 90%+ of the population so it makes
sense to test that configuration more heavily, but leave some tests running
for the non-QR configuration as well.

Differential Revision: https://phabricator.services.mozilla.com/D95430
2020-11-03 23:05:05 +00:00
Steve Fink f18174ffbd Bug 1673984 - Upgrade gcc from 9.1.0 to 9.3.0 r=firefox-build-system-reviewers,glandium
Differential Revision: https://phabricator.services.mozilla.com/D95083
2020-11-04 00:08:10 +00:00
Matt Woodrow 982780b2ca Bug 1674856 - Enable webrender-sw config for Windows10 debug reftests. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D95570
2020-11-03 23:51:22 +00:00
Sebastian Hengst 78c64a3664 Bug 1675086 - drop references to 'pgo' platforms for Linux and Windows. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D95802
2020-11-03 22:45:54 +00:00
Razvan Maries 156298851f Backed out 4 changesets (bug 1673071) for perma failures on grid-minimum-contribution-baseline-shim-vertical-lr.html. CLOSED TREE
Backed out changeset a8ad01797ee0 (bug 1673071)
Backed out changeset f2ed8ed80bf2 (bug 1673071)
Backed out changeset 34d6c0fbfeef (bug 1673071)
Backed out changeset d6857ecf3c81 (bug 1673071)
2020-11-04 00:56:16 +02:00
Kartikaya Gupta 320132a119 Bug 1673071 - Run the full slate of test suites on macos-qr. r=jmaher,jrmuizel
This patch flips things around so that the non-QR macosx test platforms are
running a "skeleton crew" set of tests, and the QR macosx test platforms are
running all the tests that were previously running with non-QR. As of Fx83
macOS has WebRender enabled by default for 90%+ of the population so it makes
sense to test that configuration more heavily, but leave some tests running
for the non-QR configuration as well.

Differential Revision: https://phabricator.services.mozilla.com/D95430
2020-11-03 14:59:49 +00:00
Razvan Maries c032d89358 Backed out 3 changesets (bug 1674856) for Windows10 swr reftests perma failures. CLOSED TREE
Backed out changeset 8e52162cdf48 (bug 1674856)
Backed out changeset eb84f9c620ac (bug 1674856)
Backed out changeset 477a1070a971 (bug 1674856)
2020-11-03 21:43:26 +02:00
Matt Woodrow 3e0d1fbb98 Bug 1674856 - Enable webrender-sw config for Windows10 debug reftests. r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D95570
2020-11-03 12:25:39 +00:00
Sebastian Hengst ab1951c79c Bug 1675051 - run Linux DevEdition tests as the expected tier 1. r=jmaher DONTBUILD
The migration of the task images from Ubuntu 16.04 to Ubuntu 18.04 in
bug 1602863 added the Ubuntu version to the platform. The platform of Linux x64
DevEdition didn't get added and used the default tier 2. We don't run tests
for Linux 32-bit anymore.

Differential Revision: https://phabricator.services.mozilla.com/D95754
2020-11-03 16:48:53 +00:00
Gregory Mierzwinski a929a223c5 Bug 1674927 - Disable similarity calculations for huge increase in run time. r=perftest-reviewers,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D95631
2020-11-03 13:38:54 +00:00
Sebastian Hengst e1e7bc96d8 Bug 1673413 - Increase default range of backfilled pushes to 19. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D94748
2020-11-03 09:26:48 +00:00
Andrew Halberstadt 1e76ae8e1f Bug 1673436 - [taskgraph] Run more manifests per-push on autoland, r=marco
This decreases the scheduling algorithm from a CT_MEDIUM (0.8) threshold to
CT_LOW (0.7). It also reduces the threshold used in the manifest resolving
algorithm down to 0.5. This means we'll have more "ride-along" manifests that
happen to be in the same chunk as the more important ones.

Differential Revision: https://phabricator.services.mozilla.com/D94757
2020-11-02 21:31:05 +00:00
Agi Sferro 0308170ebf Bug 1673100 - Add version of gv-junit that runs with fission. r=esawin,ahal
Differential Revision: https://phabricator.services.mozilla.com/D95062
2020-11-02 19:39:38 +00:00
Mike Hommey 9c1b6785e8 Bug 1672094 - Upgrade tsan builds to the last rust nightly with version 1.48.0. r=firefox-build-system-reviewers,dmajor
The first versions with 1.48 had a regression that was fixed later
during the 1.48.0 development phase. Use the last of those to have
something closer to a release, but still versioned 1.48.

Differential Revision: https://phabricator.services.mozilla.com/D94573
2020-10-24 21:46:57 +00:00
Julian Descottes 7cd5c308c1 Bug 1673419 - [devtools] Run performance node tests in the devtools-tests suite on CI r=nchevobbe
Depends on D95234
This will enable running the typescript checks for the performance-new panel on try.

Differential Revision: https://phabricator.services.mozilla.com/D95235
2020-10-30 17:20:04 +00:00
Julian Descottes bc53fd3404 Bug 1673419 - [devtools] Run shared_components node tests in the devtools-tests suite on CI r=nchevobbe
Depends on D95232

The tests were previously added to the runner, but they were not included in the test suite.

Differential Revision: https://phabricator.services.mozilla.com/D95234
2020-10-30 17:21:57 +00:00
Andrew Halberstadt 14d0784d5e Bug 1673992 - [taskgraph] Ensure we stop extracting mozharness.zip in the cwd r=bhearsum
Rather than putting a top-level "mozharness" directory in "mozharness.zip",
this puts the root of mozharness at the root of the archive. Then we extract
the archive into a "mozharness" directory. This way the path on disk ends up
being the same, but generic-worker won't attempt to modify the permissions of
files in the cwd.

Differential Revision: https://phabricator.services.mozilla.com/D95138
2020-10-30 13:32:01 +00:00
Gregory Mierzwinski 15d48fd899 Bug 1667398 - Enable macosx browsertime tests on autoland and mozilla-central. r=perftest-reviewers,Bebe
Differential Revision: https://phabricator.services.mozilla.com/D94896
2020-10-30 13:15:21 +00:00