Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Unified Diff: build/linux/sysroot_scripts/build_and_upload.py

Issue 2957423003: Change Linux sysroot creator scripts to use XZ compression. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/linux/sysroot_scripts/sysroot-creator.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_scripts/build_and_upload.py
diff --git a/build/linux/sysroot_scripts/build_and_upload.py b/build/linux/sysroot_scripts/build_and_upload.py
index bdbd73dddf5d0e0e0c884cfb7e1655300bcc71ed..78eaa6319e45072c4913c1f90ff7bac27f96f869 100755
--- a/build/linux/sysroot_scripts/build_and_upload.py
+++ b/build/linux/sysroot_scripts/build_and_upload.py
@@ -44,10 +44,10 @@ def build_and_upload(script_path, distro, release, arch, lock):
run_script([script_path, 'BuildSysroot%s' % arch])
run_script([script_path, 'UploadSysroot%s' % arch, revision])
- tarball = '%s_%s_%s_sysroot.tgz' % (distro, release, arch.lower())
- tgz_path = os.path.join(script_dir, "..", "..", "..", "out", "sysroot-build",
- release, tarball)
- sha1sum = sha1sumfile(tgz_path)
+ tarball = '%s_%s_%s_sysroot.tar.xz' % (distro, release, arch.lower())
+ tarxz_path = os.path.join(script_dir, "..", "..", "..", "out",
+ "sysroot-build", release, tarball)
+ sha1sum = sha1sumfile(tarxz_path)
sysroot_dir = '%s_%s_%s-sysroot' % (distro, release, arch.lower())
sysroot_metadata = {
« no previous file with comments | « no previous file | build/linux/sysroot_scripts/sysroot-creator.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698