From ebbde3c3f709ab645d6ca41e6e9273d108b6529f Mon Sep 17 00:00:00 2001 From: Yashas Ambati Date: Wed, 26 Feb 2025 19:23:30 -0500 Subject: [PATCH] Add all Python version for Linux aarch64, add names to stages --- .github/workflows/build-cibw.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build-cibw.yml b/.github/workflows/build-cibw.yml index 19b7e65ce..dac64d19d 100644 --- a/.github/workflows/build-cibw.yml +++ b/.github/workflows/build-cibw.yml @@ -8,6 +8,7 @@ on: jobs: get_system_time: + name: Get System Time runs-on: ubuntu-latest outputs: timestamp: ${{ steps.get_time.outputs.timestamp }} @@ -17,6 +18,7 @@ jobs: run: echo "timestamp=$(date +'%Y%m%d%H%M')" >> "$GITHUB_OUTPUT" build_wheels: + name: Build Wheels needs: get_system_time runs-on: ${{ matrix.os }} strategy: @@ -51,6 +53,21 @@ jobs: cibw_python_version: 310 platform_id: manylinux_aarch64 manylinux_image: manylinux2014 + - os: ubuntu-24.04-arm + python_version: "3.11" + cibw_python_version: 311 + platform_id: manylinux_aarch64 + manylinux_image: manylinux2014 + - os: ubuntu-24.04-arm + python_version: "3.12" + cibw_python_version: 312 + platform_id: manylinux_aarch64 + manylinux_image: manylinux2014 + - os: ubuntu-24.04-arm + python_version: "3.13" + cibw_python_version: 313 + platform_id: manylinux_aarch64 + manylinux_image: manylinux2014 # MacOS x86_64 # - os: macos-13