Skip to content

Commit 3ccdc92

Browse files
authored
New zip compression techniques (#108)
1 parent 2262fb3 commit 3ccdc92

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/boost_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
matrix:
3434
include:
3535
- os: ubuntu-latest
36-
container: cppalliance/boost_superproject_build:24.04-v3
36+
container: cppalliance/boost_superproject_build:24.04-v4
3737
packages: htop
3838
# - os: ubuntu-latest
3939
# container: cppalliance/boost_superproject_build:22.04-v1

ci_boost_release.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -703,9 +703,10 @@ def command_build(self):
703703
packages.append(
704704
parallel_call(
705705
"tar",
706+
"--use-compress-program=pigz",
706707
"--exclude=ci_boost_common.py",
707708
"--exclude=ci_boost_release.py",
708-
"-zcf",
709+
"-cf",
709710
"%s%s.tar.gz" % (self.boost_release_name, self.archive_tag),
710711
self.boost_release_name,
711712
)
@@ -716,9 +717,10 @@ def command_build(self):
716717
packages.append(
717718
parallel_call(
718719
"tar",
720+
"--use-compress-program=lbzip2",
719721
"--exclude=ci_boost_common.py",
720722
"--exclude=ci_boost_release.py",
721-
"-jcf",
723+
"-cf",
722724
"%s%s.tar.bz2" % (self.boost_release_name, self.archive_tag),
723725
self.boost_release_name,
724726
)
@@ -751,7 +753,7 @@ def command_build(self):
751753
"a",
752754
"-bd",
753755
"-mx=7",
754-
"-mmt2",
756+
"-mmt8",
755757
"-ms=on",
756758
"-x!" + self.boost_release_name + "/ci_boost_common.py",
757759
"-x!" + self.boost_release_name + "/ci_boost_release.py",

0 commit comments

Comments
 (0)