Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit c761090

Browse files
committed
Attempting to build lxml
1 parent 3340710 commit c761090

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

.github/workflows/build-wheels.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,22 @@ on:
1313

1414
jobs:
1515
build_wheels:
16-
name: Build ${{ matrix.python-version }} wheels on ${{ matrix.runner_arch }}
17-
runs-on: ${{ matrix.runner_os }}-${{ matrix.runner_arch }}
18-
16+
name: Build ${{ matrix.python-version }} wheels on ${{ matrix.runner_os }}
17+
runs-on: ${{ matrix.runner_os }}
1918
strategy:
2019
fail-fast: false
2120
matrix:
22-
python-version: ['3.11', '3.12']
21+
python-version:
22+
- '3.12'
2323
include:
24-
- runner_os: ubuntu-latest
25-
runner_arch: x64
24+
- runner_os: ubuntu-22.04
2625
cibw_build_value: "cp*-manylinux_x86_64 cp*-musllinux_x86_64"
2726

28-
- runner_os: ubuntu-latest
29-
runner_arch: arm64
27+
- runner_os: ubuntu-22.04-arm
3028
cibw_build_value: "cp*-manylinux_aarch64 cp*-musllinux_aarch64"
3129

32-
#- runner_os: macos-latest
33-
# runner_arch: arm64
34-
# cibw_build_value: "cp*-macosx_x86_64 cp*-macosx_arm64"
30+
- runner_os: macos-latest
31+
cibw_build_value: "cp*-macosx_x86_64 cp*-macosx_arm64"
3532

3633
steps:
3734
- uses: actions/checkout@v4
@@ -54,5 +51,5 @@ jobs:
5451
- name: Upload wheels
5552
uses: actions/upload-artifact@v4
5653
with:
57-
name: wheels-python${{ matrix.python-version }}-${{ matrix.runner_arch }}
54+
name: wheels-python${{ matrix.python-version }}-${{ matrix.runner_os }}
5855
path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)