Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/python_wheel_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
- runner: ubuntu-latest
platform: manylinux_x86_64
deployment_target: ""
- runner: ubuntu-24.04-arm
platform: manylinux_aarch64
deployment_target: ""
name: ${{ matrix.python }}-${{ matrix.config.platform }}-${{ matrix.config.runner }}
steps:
- uses: actions/checkout@v6
Expand All @@ -65,7 +68,9 @@
- runner: macos-26
wheel_name_pattern: "macosx_26"
- runner: ubuntu-latest
wheel_name_pattern: "manylinux"
wheel_name_pattern: "x86_64"
- runner: ubuntu-24.04-arm
wheel_name_pattern: "aarch64"
name: test-cp${{ matrix.python }}-${{ matrix.test_config.wheel_name_pattern }}
steps:
- uses: actions/checkout@v6
Expand All @@ -83,7 +88,7 @@
python-version: ${{ matrix.python }}

- name: Install produced wheel
run: |

Check failure on line 91 in .github/workflows/python_wheel_build.yml

View workflow job for this annotation

GitHub Actions / lint-action-files

shellcheck reported issue in this script: SC2012:info:3:9: Use find instead of ls to better handle non-alphanumeric filenames
ls -R wheels
PY_VER=$(python -c "import sys; print(f'cp{sys.version_info.major}{sys.version_info.minor}')")
WHEEL=$(ls wheels/*${PY_VER}*${{ matrix.test_config.wheel_name_pattern }}*.whl | head -n 1)
Expand Down Expand Up @@ -118,7 +123,7 @@
uses: actions/setup-python@v5

- name: Create PEP503-compliant wheel registry
run: |

Check failure on line 126 in .github/workflows/python_wheel_build.yml

View workflow job for this annotation

GitHub Actions / lint-action-files

shellcheck reported issue in this script: SC2035:info:2:4: Use ./*glob* or -- *glob* so names with dashes won't become options
mkdir -p wheelhouse
mv *.whl wheelhouse
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ root = "ROOT._rootcli:main"
build-frontend = { name = "build" }
build-verbosity = 1
manylinux-x86_64-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"

# Install system libraries
[tool.cibuildwheel.linux]
Expand Down
Loading