Skip to content

Commit

Permalink
Use xz compression for debian 11. (#3645)
Browse files Browse the repository at this point in the history
* Use xz compression for debian 11.

* Update azure-pipelines.yml
  • Loading branch information
khkh-ms committed Apr 18, 2024
1 parent 5bf3f53 commit c6a4269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion publish-scripts/ubuntu/buildDEB.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ def preparePackage():
os.chmod(os.path.join(debian, "postinst"), 0o755)

os.chdir(constants.DRIVERROOTDIR)
output = helper.printReturnOutput(["fakeroot", "dpkg-deb", "--build",
output = helper.printReturnOutput(["fakeroot", "dpkg-deb", "--build", "-Zxz",
os.path.join(constants.BUILDFOLDER, packageFolder), os.path.join(constants.ARTIFACTFOLDER, packageFolder+".deb")])
assert(f"building package '{constants.PACKAGENAME}'" in output)

0 comments on commit c6a4269

Please sign in to comment.