Skip to content

Commit d81cbfa

Browse files
committedNov 26, 2024
Bug 1710599 - Switch linux build archives to xz format r=releng-reviewers,taskgraph-reviewers,bhearsum,firefox-build-system-reviewers,glandium
Differential Revision: https://phabricator.services.mozilla.com/D225806
1 parent cad7a3b commit d81cbfa

File tree

58 files changed

+143
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+143
-90
lines changed
 

‎python/mozbuild/mozbuild/artifacts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ def process_symbols_archive(self, filename, processed_filename):
552552

553553

554554
class LinuxArtifactJob(ArtifactJob):
555-
package_re = r"public/build/target\.tar\.bz2$"
555+
package_re = r"public/build/target\.tar\.(bz2|xz)$"
556556
product = "firefox"
557557

558558
_package_artifact_patterns = {

‎python/mozrelease/mozrelease/partner_repack.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def getFtpPlatform(platform: str):
215215
def getFileExtension(platform: str):
216216
"""The extension for the output file, which may be passed to the internal-signing task"""
217217
if isLinux(platform):
218-
return "tar.bz2"
218+
return "tar.xz"
219219
elif isMac(platform):
220220
return "tar.gz"
221221
elif isWin(platform):

0 commit comments

Comments
 (0)
Failed to load comments.