This is an automated email from the ASF dual-hosted git repository. jmalkin pushed a commit to branch muslinux-wheels in repository https://gitbox.apache.org/repos/asf/datasketches-python.git
commit 5f55e615da056ba84f9abd21454c965ebf3d629b Author: Jon <[email protected]> AuthorDate: Tue Apr 9 23:33:19 2024 -0700 remove 32-bit wheel builds, add muslinux --- .github/workflows/build_wheels.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index c7453e2..22b2772 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -2,7 +2,7 @@ name: Build Python Wheels on: workflow_dispatch: - + env: BUILD_TYPE: Release MIN_CIBUILDWHEEL_VERSION: 2.16.2 @@ -50,20 +50,26 @@ jobs: cibw-arch: macosx_arm64 } - { - name: "Ubuntu Latest (x86_64)", + name: "Ubuntu Latest (x86_64, manylinux)", os: ubuntu-latest, cibw-arch: manylinux_x86_64 } - { - name: "Ubuntu Latest (ARM64)", + name: "Ubuntu Latest (ARM64, manylinux)", os: ubuntu-latest, cibw-arch: manylinux_aarch64, use-qemu: true } - { - name: "Ubuntu Latest (i686)", + name: "Ubuntu Latest (x86_64, muslinux)", os: ubuntu-latest, - cibw-arch: manylinux_i686 + cibw-arch: muslinux_x86_64 + } + - { + name: "Ubuntu Latest (ARM64, muslinux)", + os: ubuntu-latest, + cibw-arch: muslinux_aarch64, + use-qemu: true } - { name: "Windows Latest", --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
