changeset 52264:c1a3e388b0e4 stable

wheel: add a target for amdx86_64-musl wheels These can be installed on alpineā€¦ which is quite useful.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Thu, 14 Nov 2024 22:09:36 +0100
parents 391ddc987902
children a1f2e25b6b38
files Makefile contrib/packaging/Makefile
diffstat 2 files changed, 9 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Fri Nov 15 16:27:41 2024 +0100
+++ b/Makefile	Thu Nov 14 22:09:36 2024 +0100
@@ -226,6 +226,7 @@
   fedora \
   linux-wheels \
   linux-wheels-x86_64 \
+  linux-wheels-x86_64-musl \
   linux-wheels-i686 \
   ppa
 
--- a/contrib/packaging/Makefile	Fri Nov 15 16:27:41 2024 +0100
+++ b/contrib/packaging/Makefile	Thu Nov 14 22:09:36 2024 +0100
@@ -45,8 +45,10 @@
 	@echo 'linux-wheels'
 	@echo '   Build Linux manylinux wheels using Docker.'
 	@echo ''
-	@echo 'linux-wheels-{x86_64, i686}'
+	@echo 'linux-wheels-{x86_64, i686}{,-musl}'
 	@echo '   Build Linux manylinux wheels for a specific architecture using Docker'
+	@echo '   The -musl variants is suitable for system using "musl" instead of "glibc",
+	@echo '   for example: Alpine linux.'
 	@echo ''
 	@echo 'deb'
 	@echo '   Build a Debian package locally targeting the current system'
@@ -125,8 +127,7 @@
 $(foreach release,$(RHEL_RELEASES),$(eval $(call rhel_targets,$(release))))
 
 .PHONY: linux-wheels
-linux-wheels: linux-wheels-x86_64
-
+linux-wheels: linux-wheels-x86_64 linux-wheels-x86_64-musl
 
 img_reg="registry.heptapod.net/mercurial/ci-images"
 img_tag="v3.0"
@@ -136,6 +137,10 @@
 linux-wheels-x86_64:
 	docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-x86_64-c:$(img_tag) $(whl_sh)
 
+.PHONY: linux-wheels-x86_64-musl
+linux-wheels-x86_64-musl:
+	docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-x86_64-musl-c:$(img_tag) $(whl_sh)
+
 .PHONY: linux-wheels-i686
 linux-wheels-i686:
 	docker run -e "HGTEST_JOBS=$(shell nproc)" --rm -ti -v `pwd`/../..:/src quay.io/pypa/manylinux1_i686 linux32 /src/contrib/packaging/build-linux-wheels.sh