Skip to content
Snippets Groups Projects
Commit af88f2b9b5b7 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

wheel: reintroduce the building of i686 wheel

We now have image to make that work.
parent a1f2e25b6b38
No related branches found
No related tags found
2 merge requests!1100Merge stable into default,!1087build wheel for i686
......@@ -228,6 +228,7 @@
linux-wheels-x86_64 \
linux-wheels-x86_64-musl \
linux-wheels-i686 \
linux-wheels-i686-musl \
ppa
# Forward packaging targets for convenience.
......
......@@ -127,7 +127,7 @@
$(foreach release,$(RHEL_RELEASES),$(eval $(call rhel_targets,$(release))))
.PHONY: linux-wheels
linux-wheels: linux-wheels-x86_64 linux-wheels-x86_64-musl
linux-wheels: linux-wheels-x86_64 linux-wheels-x86_64-musl linux-wheels-i686 linux-wheels-i686-musl
img_reg="registry.heptapod.net/mercurial/ci-images"
img_tag="v3.0"
......@@ -143,4 +143,8 @@
.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
docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-i686-c:$(img_tag) $(whl_sh)
.PHONY: linux-wheels-i686-musl
linux-wheels-i686-musl:
docker run --rm -ti -v `pwd`/../..:/src $(img_reg)/core-wheel-i686-musl-c:$(img_tag) $(whl_sh)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment