Skip to content

Commit bccdde3

Browse files
authored
Update build_arm.yml
1 parent 0d49d67 commit bccdde3

File tree

1 file changed

+37
-23
lines changed

1 file changed

+37
-23
lines changed

.github/workflows/build_arm.yml

Lines changed: 37 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,44 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
include:
10-
# - os: ubuntu-latest
11-
# cibw_archs: "native"
12-
- os: ubuntu-latest
13-
cibw_archs: "aarch64"
14-
# - os: windows-latest
15-
# cibw_archs: "native ARM64"
16-
# - os: macos-latest
17-
# cibw_archs: "native arm64"
9+
# macos-13 is an intel runner, macos-14 is apple silicon
10+
os: [macos-14]
1811

1912
steps:
20-
- name: Set up QEMU
21-
if: matrix.cibw_archs == 'aarch64'
22-
uses: docker/setup-qemu-action@v2
23-
with:
24-
platforms: arm64
25-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
14+
2615
- name: Build wheels
2716
uses: pypa/[email protected]
28-
env:
29-
CIBW_ARCHS: ${{ matrix.cibw_archs }}
30-
CIBW_SKIP: "pp*"
31-
CIBW_TEST_REQUIRES: pytest
32-
CIBW_TEST_COMMAND: pytest {package}
33-
- uses: actions/upload-artifact@v3
34-
with:
35-
path: ./wheelhouse/*.whl
17+
# jobs:
18+
# build_wheels:
19+
# name: Build wheels on ${{ matrix.os }}
20+
# runs-on: ${{ matrix.os }}
21+
# strategy:
22+
# matrix:
23+
# include:
24+
# # - os: ubuntu-latest
25+
# # cibw_archs: "native"
26+
# - os: ubuntu-latest
27+
# cibw_archs: "aarch64"
28+
# # - os: windows-latest
29+
# # cibw_archs: "native ARM64"
30+
# # - os: macos-latest
31+
# # cibw_archs: "native arm64"
32+
33+
# steps:
34+
# - name: Set up QEMU
35+
# if: matrix.cibw_archs == 'aarch64'
36+
# uses: docker/setup-qemu-action@v2
37+
# with:
38+
# platforms: arm64
39+
# - uses: actions/checkout@v3
40+
# - name: Build wheels
41+
# uses: pypa/[email protected]
42+
# env:
43+
# CIBW_ARCHS: ${{ matrix.cibw_archs }}
44+
# CIBW_SKIP: "pp*"
45+
# CIBW_TEST_REQUIRES: pytest
46+
# CIBW_TEST_COMMAND: pytest {package}
47+
# - uses: actions/upload-artifact@v3
48+
# with:
49+
# path: ./wheelhouse/*.whl

0 commit comments

Comments
 (0)