aboutsummaryrefslogtreecommitdiffstats
path: root/build/ci.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-02-18 18:12:26 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-02-19 17:00:46 +0800
commitdf355eceb41f4beec611faea0df617ea59980bef (patch)
tree938ebbb20c6d20ed9af1b8b1eea8c9f9cc3c0c9f /build/ci.go
parent84cb00a94d060b76df997f7599b312c8d30db893 (diff)
downloadgo-tangerine-df355eceb41f4beec611faea0df617ea59980bef.tar
go-tangerine-df355eceb41f4beec611faea0df617ea59980bef.tar.gz
go-tangerine-df355eceb41f4beec611faea0df617ea59980bef.tar.bz2
go-tangerine-df355eceb41f4beec611faea0df617ea59980bef.tar.lz
go-tangerine-df355eceb41f4beec611faea0df617ea59980bef.tar.xz
go-tangerine-df355eceb41f4beec611faea0df617ea59980bef.tar.zst
go-tangerine-df355eceb41f4beec611faea0df617ea59980bef.zip
build: explicitly force .xz compression (old debuild picks gzip) (#19118)
(cherry picked from commit c0b9c763bb1572c202a60b82e7dcdc48dc3c280a)
Diffstat (limited to 'build/ci.go')
-rw-r--r--build/ci.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ci.go b/build/ci.go
index 11fa759da..4ee76ced5 100644
--- a/build/ci.go
+++ b/build/ci.go
@@ -507,7 +507,7 @@ func doDebianSource(cmdline []string) {
for _, distro := range debDistros {
meta := newDebMetadata(distro, *signer, env, now, pkg.Name, pkg.Version, pkg.Executables)
pkgdir := stageDebianSource(*workdir, meta)
- debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d")
+ debuild := exec.Command("debuild", "-S", "-sa", "-us", "-uc", "-d", "-Zxz")
debuild.Dir = pkgdir
build.MustRun(debuild)