Tom Ritter
1f279f7006
Bug 1547519 - Fix jemalloc redirections for MinGW build r=glandium
...
In the MinGW build, calls to malloc inside mozglue were not being
redirected as defined in the .def file. We create aliases for the
redirected functions to correctly redirect them inside mozglue.
An alternate solution for this exists. Rather than creating the
importlib during the linking step for mozglue, we could have used
dlltool to create it, and then provided it during linking. This
would allow mozglue to know that it should redirect calls to malloc
to je_malloc as specified in the .def file.
Differential Revision: https://phabricator.services.mozilla.com/D38407
--HG--
extra : moz-landing-system : lando
2019-09-04 02:40:08 +00:00
Julien Cristau
b388d67f46
Bug 1478331 - Include common-opt mozconfig from nightly-asan-reporter instead of duplicating much of it. r=dmajor
...
Differential Revision: https://phabricator.services.mozilla.com/D43440
--HG--
extra : moz-landing-system : lando
2019-08-26 13:54:14 +00:00
Julien Cristau
1666ddaeaf
Bug 1478331 - use nightly branding for ASan Nightly builds. r=dmajor
...
Differential Revision: https://phabricator.services.mozilla.com/D43247
--HG--
extra : moz-landing-system : lando
2019-08-26 13:54:14 +00:00
David Major
2883853abf
Bug 1577528 - Remove hardcoded clang version in ccov mozconfigs r=froydnj
...
So that we don't have to keep bumping them by hand with every compiler upgrade.
This pattern was taken from the other uses of https://searchfox.org/mozilla-central/search?q=CLANG_LIB_DIR&case=true
Differential Revision: https://phabricator.services.mozilla.com/D43990
--HG--
extra : moz-landing-system : lando
2019-08-30 13:46:11 +00:00
Tom Ritter
e008eddf52
Bug 1575975 - Enable the maintenance service for MinGW r=firefox-build-system-reviewers,mshal
...
We don't need to disable it. The problem with this commit is that
we want to keep the --disable-maintenance-service flag working, so
we might want a separate build for that (and other unusual --disable
flags) - but such a build can be clearly labeled so people understand
why things broke.
Differential Revision: https://phabricator.services.mozilla.com/D43145
--HG--
extra : moz-landing-system : lando
2019-08-27 22:02:23 +00:00
Sylvestre Ledru
65d8b0025e
Bug 1564252 - Move to clang 8.0.1 r=glandium
...
Differential Revision: https://phabricator.services.mozilla.com//D42325
--HG--
extra : amend_source : 129ff97f6edc41ad7a2f54520141158416e75b8d
2019-08-20 21:06:24 +02:00
Mike Hommey
8d65c5e3a3
Bug 1575824 - Disable `make check` on searchfox builds. r=dmajor
...
because it wasn't enabled for them before bug 1575471.
Differential Revision: https://phabricator.services.mozilla.com/D43047
--HG--
extra : moz-landing-system : lando
2019-08-22 21:40:32 +00:00
Mike Hommey
14434b6fd9
Bug 1573722 - Remove browser/config/mozconfigs/linux64/hazards. r=sfink
...
The mozconfig in the task definition is overriden in hazard-browser.sh,
so it has effectively no effect, and hazard-browser.sh has been using
js/src/devtools/rootAnalysis/mozconfig.haz since bug 1321014.
Differential Revision: https://phabricator.services.mozilla.com/D41879
--HG--
extra : moz-landing-system : lando
2019-08-17 00:47:24 +00:00
Mike Hommey
c173540215
Bug 1573435 - Use toolchain fetches for all remaining toolchain uses. r=nalexander
...
The remaining uses all need adjustements to in-tree mozconfigs, so they
all need to be done at once.
However, to make things slightly more intelligible, we do this in two
steps. This is step 1: we modify the use_toolchain transform to take care of
the transformation, while keeping the task definitions intact, so that
we only deal with mozconfig and build script adjustements here.
Differential Revision: https://phabricator.services.mozilla.com/D41890
2019-08-15 11:21:52 +09:00
Eric Rahm
26bdfd6480
Bug 1571836 - Enable Rust PGO on Linux64. r=froydnj
...
Differential Revision: https://phabricator.services.mozilla.com/D40858
--HG--
extra : moz-landing-system : lando
2019-08-06 22:26:49 +00:00
Cosmin Sabou
a1263fcf4d
Bug 1567968 - Fix build bustages on compare-mozconfigs.py. r=froydnj
2019-07-23 17:15:31 +03:00
Nathan Froyd
27ddb75106
Bug 1567968 - remove manual setting of MOZ_LTO from x86-64 win64 mozconfigs; r=glandium
...
When we turned on xLTO, we removed the manual adding of Rust-side LTO
flags for Win64:
https://hg.mozilla.org/mozilla-central/rev/402b26b7e514#l10.12
and replaced it with automatic detection of "are we doing PGO on
Windows" in configure:
https://hg.mozilla.org/mozilla-central/rev/8ba3c1292475b96e2ccb46c3232c929863451ff6#l1.10
The problem is that we manually turned on xLTO in a number of different
windows configurations:
https://hg.mozilla.org/mozilla-central/rev/402b26b7e514#l11.1
https://hg.mozilla.org/mozilla-central/rev/402b26b7e514#l12.1
https://hg.mozilla.org/mozilla-central/rev/402b26b7e514#l13.1
Which I think we shouldn't have done: making the above change turns on
xLTO for non-shippable builds as well. We should just let
PGO-ness (i.e. shippable builds) take care of turning on xLTO for us.
Note that we leave the aarch64 configs as they are; they were doing LTO
prior to the xLTO change and it's fine to leave them doing xLTO after.
Differential Revision: https://phabricator.services.mozilla.com/D38901
--HG--
extra : moz-landing-system : lando
2019-07-23 02:59:41 +00:00
Nathan Froyd
bde244933a
Bug 1486042 - switch all existing `MOZ_LTO` configs to use cross-language LTO; r=dmajor
...
This change is a no-op for win64 configs, as they had this feature before.
Differential Revision: https://phabricator.services.mozilla.com/D33317
--HG--
extra : moz-landing-system : lando
2019-07-16 02:39:16 +00:00
Mike Shal
194eac527d
Bug 1562768 - Remove redundant linux64/devedition mozconfig PGO settings; r=firefox-build-system-reviewers,chmanchester
...
Bug 1553065 made this redundant by putting the profile-use mozconfig
settings in build/unix/mozconfig.unix. We no longer need them in each
leaf mozconfig.
Differential Revision: https://phabricator.services.mozilla.com/D36543
--HG--
extra : moz-landing-system : lando
2019-07-02 01:13:21 +00:00
Mike Shal
3fc78297a0
Bug 1562258 - Disable tests on instrumented builds; r=froydnj
...
We don't run any tests on these builds, since they are just used to
generate the profile data for the final build. We can save some time by
skipping all test related code.
Differential Revision: https://phabricator.services.mozilla.com/D36511
--HG--
extra : moz-landing-system : lando
2019-07-01 20:09:48 +00:00
Tom Ritter
32bcb9a7db
Bug 1562045 - Disable jemalloc on mingw-clang builds for now r=glandium
...
Differential Revision: https://phabricator.services.mozilla.com/D36251
--HG--
extra : moz-landing-system : lando
2019-06-27 22:00:31 +00:00
Mike Shal
bd20bd66db
Bug 1561144 - Add win32 PGO-instrumented task; r=tomprince
...
Differential Revision: https://phabricator.services.mozilla.com/D35744
--HG--
extra : moz-landing-system : lando
2019-06-25 18:43:49 +00:00
Mike Shal
fdda992909
Bug 1561147 - Add linux32 PGO-instrumented task; r=tomprince
...
Differential Revision: https://phabricator.services.mozilla.com/D35886
--HG--
extra : moz-landing-system : lando
2019-06-26 15:30:10 +00:00
Mike Shal
3bdb950687
Bug 1557785 - Add win64 PGO-instrumented task; r=tomprince
...
Differential Revision: https://phabricator.services.mozilla.com/D34795
--HG--
extra : moz-landing-system : lando
2019-06-19 22:05:26 +00:00
Mike Shal
e52ded1092
Bug 1553065 - Move profile-use mozconfig info into common mozconfigs; r=firefox-build-system-reviewers,chmanchester
...
The 3-tier PGO builds used a separate mozconfig called 'profile-use' for
the final tier. This created a problem when it rode to beta, since the
same mozconfig was used for all trees, which meant we ended up with
nightly branding on beta builds.
With the PGO-enabling logic in common mozconfigs, we can enable it by
setting the MOZ_PGO_PROFILE_USE environment variable from the task
definition. All of the final-tier PGO builds now use the nightly, beta,
etc mozconfigs like before, so branding should be intact.
Differential Revision: https://phabricator.services.mozilla.com/D33172
--HG--
extra : moz-landing-system : lando
2019-05-31 23:56:16 +00:00
Cosmin Sabou
85466f08fd
Backed out 2 changesets (bug 1486042) for causing crashes @ servo_arc::Arc<T>::drop_slow. CLOSED TREE
...
Backed out changeset 5e85998c4d97 (bug 1486042)
Backed out changeset d083a8bd98ed (bug 1486042)
2019-06-01 02:19:19 +03:00
Nathan Froyd
92be49be62
Bug 1486042 - switch all existing `MOZ_LTO` configs to use cross-language LTO; r=dmajor
...
This change is a no-op for win64 configs, as they had this feature before.
Differential Revision: https://phabricator.services.mozilla.com/D33317
--HG--
extra : moz-landing-system : lando
2019-05-31 17:48:40 +00:00
Mike Shal
b90935eec1
Bug 1338099 - Export MOZILLA_OFFICIAL in the source build for sourcestamp.txt; r=nalexander
...
MOZ_INCLUDE_SOURCE_INFO is needed for us to write out the MOZ_SOURCE_URL
in sourcestamp.txt, and MOZ_INCLUDE_SOURCE_INFO is set in configure only
for MOZILLA_OFFICIAL=1 builds.
Differential Revision: https://phabricator.services.mozilla.com/D32519
--HG--
extra : moz-landing-system : lando
2019-05-24 23:41:27 +00:00
Nathan Froyd
93a44ee14e
Bug 1553972 - make --with-pgo-profile-path take a directory; r=nalexander
...
e10s profiling or IR-based PGO instrumentation will both produce
multiple `.profraw` files that need to be handled in some way. Since
clang's `-fprofile-generate` option takes a directory, it seems fitting
to make `--with-pgo-profile-path` mirror that by taking a directory, and
letting `merge_profdata.py` deal with whatever files it might find in
said directory.
Differential Revision: https://phabricator.services.mozilla.com/D32389
--HG--
extra : moz-landing-system : lando
2019-05-24 01:53:59 +00:00
Tom Ritter
6ac52e21b1
Bug 1471698 - Remove our binutils-corruption-avoiding workaround for mingw-clang r=froydnj
...
Depends on D31347
Differential Revision: https://phabricator.services.mozilla.com/D31349
--HG--
extra : moz-landing-system : lando
2019-05-22 13:40:36 +00:00
David Major
a3bdbda19a
Bug 1553116 - Get the arm64 hardening flag out of the way of l10n builds r=froydnj
...
Differential Revision: https://phabricator.services.mozilla.com/D32165
--HG--
extra : moz-landing-system : lando
2019-05-23 10:23:04 +00:00
Oana Pop Rus
af0293e185
Backed out changeset 7de6c5aab8b4 (bug 1471698) for build bustages on Windows MinGW all on a CLOSED TREE
2019-05-22 16:36:06 +03:00
Tom Ritter
382e464814
Bug 1471698 - Remove our binutils-corruption-avoiding workaround for mingw-clang r=froydnj
...
Depends on D31347
Differential Revision: https://phabricator.services.mozilla.com/D31349
--HG--
extra : moz-landing-system : lando
2019-05-21 17:57:06 +00:00
David Major
12a5d86407
Bug 1526443 - Pick up LLVM fix for CFG on arm64-windows builds r=froydnj
...
Cherry-picks https://bugs.llvm.org/show_bug.cgi?id=39799 and enables CFG on aarch64-windows automation. It's keyed on an explicit --enable-hardening to avoid breaking the local builds of developers who haven't yet picked up the compiler patch.
Differential Revision: https://phabricator.services.mozilla.com/D28236
--HG--
extra : moz-landing-system : lando
2019-05-20 17:53:37 +00:00
Coroiu Cristina
55a63d1520
Backed out 2 changesets (bug 1523526, bug 1526443) for Be bustage on Windows AArch on a CLOSED TREE
...
Backed out changeset 98013639d600 (bug 1526443)
Backed out changeset e8ac4b512f9d (bug 1523526)
2019-05-20 20:21:56 +03:00
David Major
f0dc4b3dbe
Bug 1526443 - Pick up LLVM fix for CFG on arm64-windows builds r=froydnj
...
Cherry-picks https://bugs.llvm.org/show_bug.cgi?id=39799 and enables CFG on aarch64-windows automation. It's keyed on an explicit --enable-hardening to avoid breaking the local builds of developers who haven't yet picked up the compiler patch.
Differential Revision: https://phabricator.services.mozilla.com/D28236
--HG--
extra : moz-landing-system : lando
2019-05-13 18:38:23 +00:00
Emilio Cobos Álvarez
4e4121ea80
Bug 1551044 - Re-introduce debug symbols for noopt linux64 builds. r=froydnj
...
They were disabled in bug 1370129 because there were no use cases for them, but
there are use-cases for at least the linux64 ones :)
Let me know if you want me to enable them everywhere.
Differential Revision: https://phabricator.services.mozilla.com/D30797
--HG--
extra : moz-landing-system : lando
2019-05-13 16:05:07 +00:00
Mike Hommey
0e4063bd7b
Bug 1549886 - Enable MOZ_TELEMETRY_REPORTING by default when MOZILLA_OFFICIAL is set. r=froydnj
...
Differential Revision: https://phabricator.services.mozilla.com/D30336
--HG--
extra : moz-landing-system : lando
2019-05-08 14:33:56 +00:00
Mike Shal
5e4d5ff8da
Bug 1547395 - Use 3-tier PGO for linux64-devedition builds; r=chmanchester
...
Depends on D29247
Differential Revision: https://phabricator.services.mozilla.com/D29248
--HG--
extra : moz-landing-system : lando
2019-04-29 19:37:33 +00:00
Tom Ritter
2371a62f3e
Bug 1547168
- Make the mingw-clang debug builds optimized r=dmajor
...
Because it's too painful to run otherwise.
Differential Revision: https://phabricator.services.mozilla.com/D28938
--HG--
extra : moz-landing-system : lando
2019-04-26 12:28:15 +00:00
Tom Ritter
78e0076a2e
Bug 1547007 - Remove mingw-gcc mozconfigs r=dmajor
...
These were missed when we removed the mingw-gcc build jobs
Differential Revision: https://phabricator.services.mozilla.com/D28940
--HG--
extra : moz-landing-system : lando
2019-04-26 12:25:35 +00:00
Tom Ritter
288f88722a
Bug 1535399 - Add --enable-proxy-bypass-protection to mingw builds r=dmajor
...
Tor compiles with these, using the mingw build, so it makes sense to
replicate their configuration.
Differential Revision: https://phabricator.services.mozilla.com/D28939
--HG--
extra : moz-landing-system : lando
2019-04-26 12:31:23 +00:00
Robert Strong
13aac1dde6
Bug 1545712 - make verify mar enabled the default. r=glandium
...
Changes --enable-verify-mar to be the default. Builds that want to disable mar verification will need to specify --disabled-verify-mar.
Removes --enable-verify-mar from Firefox's mozconfigs since it is no longer needed.
Re-enables app update browser chrome tests on ASAN that were disabled due to the ASAN mozconfigs not specifying --enable-verify-mar.
This also makes the same app update browser chrome tests on code coverage builds due to the code coverage mozconfigs not specifying --enable-verify-mar.
Differential Revision: https://phabricator.services.mozilla.com/D28288
--HG--
extra : moz-landing-system : lando
2019-04-23 23:00:12 +00:00
Christian Holler
a15a27b2f0
Bug 1544400 - Update fuzzing builds to Clang 8 and use gold. r=froydnj
...
Differential Revision: https://phabricator.services.mozilla.com/D27701
--HG--
extra : moz-landing-system : lando
2019-04-18 08:28:29 +00:00
Mike Hommey
1cdf383210
Bug 1543956
- Use a fixed mozconfig for linux64-aarch64 builds. r=mshal
...
Differential Revision: https://phabricator.services.mozilla.com/D27631
--HG--
rename : browser/config/mozconfigs/linux64-aarch64/nightly => browser/config/mozconfigs/linux64-aarch64/opt
extra : moz-landing-system : lando
2019-04-17 05:33:24 +00:00
Mike Shal
aa51b83c3a
Bug 1536194 - Fix uses of MOZ_LTO in a few mozconfigs; r=firefox-build-system-reviewers,glandium
...
After bug 1530908 changed LTO to be environment driven, the macosx64
nightly mozconfig enables LTO by setting MOZ_LTO=1. The add-on-devel
mozconfig tried to disable LTO by using --disable-lto, but the
environment variable takes precedence, leaving LTO enabled for these
builds. This pushed the build time up to be close to the max runtime for
the task, causing frequent intermittent failures.
We should 'unset MOZ_LTO' everywhere that --disable-lto was used, and
'export MOZ_LTO=1' everywhere --enable-lto was used.
Differential Revision: https://phabricator.services.mozilla.com/D26608
--HG--
extra : moz-landing-system : lando
2019-04-09 06:37:06 +00:00
David Major
6137929bc0
Bug 1512723 - Enable cross-language LTO on Win64 shippable builds r=glandium
...
Differential Revision: https://phabricator.services.mozilla.com/D25852
--HG--
extra : moz-landing-system : lando
2019-04-04 13:20:15 +00:00
Mike Hommey
9454edbe38
Bug 1538060 - Update non-Windows builds to clang 8. r=froydnj
...
Windows builds have been taken care of in bug 1535441.
Differential Revision: https://phabricator.services.mozilla.com/D25328
--HG--
rename : build/build-clang/clang-7-android.json => build/build-clang/clang-8-android.json
rename : build/build-clang/clang-7-linux64.json => build/build-clang/clang-8-linux64.json
rename : build/build-clang/clang-7-macosx64.json => build/build-clang/clang-8-macosx64.json
rename : build/build-clang/clang-trunk-mingw.json => build/build-clang/clang-8-mingw.json
rename : taskcluster/scripts/misc/build-clang-7-android.sh => taskcluster/scripts/misc/build-clang-8-android.sh
rename : taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-7-linux.sh => taskcluster/scripts/misc/build-clang-8-linux.sh
rename : taskcluster/scripts/misc/build-clang-trunk-mingw.sh => taskcluster/scripts/misc/build-clang-8-mingw.sh
extra : moz-landing-system : lando
2019-04-02 02:18:10 +00:00
Noemi Erli
c479fa48df
Backed out changeset 0d8cf467ed34 (bug 1538060) for Toolchains bustages CLOSED TREE
...
--HG--
rename : build/build-clang/clang-8-android.json => build/build-clang/clang-7-android.json
rename : build/build-clang/clang-8-linux64.json => build/build-clang/clang-7-linux64.json
rename : build/build-clang/clang-8-macosx64.json => build/build-clang/clang-7-macosx64.json
rename : build/build-clang/clang-8-mingw.json => build/build-clang/clang-trunk-mingw.json
rename : taskcluster/scripts/misc/build-clang-8-android.sh => taskcluster/scripts/misc/build-clang-7-android.sh
rename : taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-8-linux.sh => taskcluster/scripts/misc/build-clang-7-linux.sh
rename : taskcluster/scripts/misc/build-clang-8-mingw.sh => taskcluster/scripts/misc/build-clang-trunk-mingw.sh
2019-04-02 04:54:34 +03:00
Mike Hommey
0b2041f465
Bug 1538060 - Update non-Windows builds to clang 8. r=froydnj
...
Windows builds have been taken care of in bug 1535441.
Differential Revision: https://phabricator.services.mozilla.com/D25328
--HG--
rename : build/build-clang/clang-7-android.json => build/build-clang/clang-8-android.json
rename : build/build-clang/clang-7-linux64.json => build/build-clang/clang-8-linux64.json
rename : build/build-clang/clang-7-macosx64.json => build/build-clang/clang-8-macosx64.json
rename : build/build-clang/clang-trunk-mingw.json => build/build-clang/clang-8-mingw.json
rename : taskcluster/scripts/misc/build-clang-7-android.sh => taskcluster/scripts/misc/build-clang-8-android.sh
rename : taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-7-linux.sh => taskcluster/scripts/misc/build-clang-8-linux.sh
rename : taskcluster/scripts/misc/build-clang-trunk-mingw.sh => taskcluster/scripts/misc/build-clang-8-mingw.sh
extra : moz-landing-system : lando
2019-04-01 12:23:13 +00:00
Marco Castelluccio
c9edd7cbc1
Bug 1540749 - Link Rust dead code and disable overflow checks to improve Rust coverage results. r=calixte
...
Differential Revision: https://phabricator.services.mozilla.com/D25624
--HG--
extra : moz-landing-system : lando
2019-04-01 18:51:58 +00:00
Ciure Andrei
8a67ec169a
Backed out 3 changesets (bug 1538060, bug 1539779, bug 1536790) for causing clang-tidy bustages CLOSED TREE
...
Backed out changeset 7d058f3174e5 (bug 1538060)
Backed out changeset 8839622122ed (bug 1539779)
Backed out changeset 9eb7867c1dd4 (bug 1536790)
--HG--
rename : build/build-clang/clang-8-android.json => build/build-clang/clang-7-android.json
rename : build/build-clang/clang-8-linux64.json => build/build-clang/clang-7-linux64.json
rename : build/build-clang/clang-8-macosx64.json => build/build-clang/clang-7-macosx64.json
rename : build/build-clang/clang-8-mingw.json => build/build-clang/clang-trunk-mingw.json
rename : taskcluster/scripts/misc/build-clang-8-android.sh => taskcluster/scripts/misc/build-clang-7-android.sh
rename : taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-8-linux.sh => taskcluster/scripts/misc/build-clang-7-linux.sh
rename : taskcluster/scripts/misc/build-clang-8-mingw.sh => taskcluster/scripts/misc/build-clang-trunk-mingw.sh
2019-03-30 01:52:37 +02:00
Andreea Pavel
e9856466cd
Bug 1538060 - Update non-Windows builds to clang 8.
...
Summary: Windows builds have been taken care of in bug 1535441.
Reviewers: froydnj
Reviewed By: froydnj
Subscribers: froydnj, sylvestre, rjl
Bug #: 1538060
Differential Revision: https://phabricator.services.mozilla.com/D25328
--HG--
rename : build/build-clang/clang-7-android.json => build/build-clang/clang-8-android.json
rename : build/build-clang/clang-7-linux64.json => build/build-clang/clang-8-linux64.json
rename : build/build-clang/clang-7-macosx64.json => build/build-clang/clang-8-macosx64.json
rename : build/build-clang/clang-trunk-mingw.json => build/build-clang/clang-8-mingw.json
rename : taskcluster/scripts/misc/build-clang-7-android.sh => taskcluster/scripts/misc/build-clang-8-android.sh
rename : taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-7-linux.sh => taskcluster/scripts/misc/build-clang-8-linux.sh
rename : taskcluster/scripts/misc/build-clang-trunk-mingw.sh => taskcluster/scripts/misc/build-clang-8-mingw.sh
extra : rebase_source : 4306240dd7bee404e83b6f0e651f4be0a1bfa165
extra : histedit_source : e569b2a5568d3aa2b9191b214947a8a11a3e06bf
2019-03-30 01:24:50 +02:00
Ciure Andrei
9fa2ff7bbe
Backed out changeset dc3b81670b01 (bug 1538060) for causing clang-tidy bustages CLOSED TREE
...
--HG--
rename : build/build-clang/clang-8-android.json => build/build-clang/clang-7-android.json
rename : build/build-clang/clang-8-linux64.json => build/build-clang/clang-7-linux64.json
rename : build/build-clang/clang-8-macosx64.json => build/build-clang/clang-7-macosx64.json
rename : build/build-clang/clang-8-mingw.json => build/build-clang/clang-trunk-mingw.json
rename : taskcluster/scripts/misc/build-clang-8-android.sh => taskcluster/scripts/misc/build-clang-7-android.sh
rename : taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-8-linux.sh => taskcluster/scripts/misc/build-clang-7-linux.sh
rename : taskcluster/scripts/misc/build-clang-8-mingw.sh => taskcluster/scripts/misc/build-clang-trunk-mingw.sh
2019-03-30 00:36:40 +02:00
Mike Hommey
632b7eac9a
Bug 1538060 - Update non-Windows builds to clang 8. r=froydnj
...
Windows builds have been taken care of in bug 1535441.
Differential Revision: https://phabricator.services.mozilla.com/D25328
--HG--
rename : build/build-clang/clang-7-android.json => build/build-clang/clang-8-android.json
rename : build/build-clang/clang-7-linux64.json => build/build-clang/clang-8-linux64.json
rename : build/build-clang/clang-7-macosx64.json => build/build-clang/clang-8-macosx64.json
rename : build/build-clang/clang-trunk-mingw.json => build/build-clang/clang-8-mingw.json
rename : taskcluster/scripts/misc/build-clang-7-android.sh => taskcluster/scripts/misc/build-clang-8-android.sh
rename : taskcluster/scripts/misc/build-clang-7-linux-macosx-cross.sh => taskcluster/scripts/misc/build-clang-8-linux-macosx-cross.sh
rename : taskcluster/scripts/misc/build-clang-7-linux.sh => taskcluster/scripts/misc/build-clang-8-linux.sh
rename : taskcluster/scripts/misc/build-clang-trunk-mingw.sh => taskcluster/scripts/misc/build-clang-8-mingw.sh
extra : moz-landing-system : lando
2019-03-29 21:37:37 +00:00