We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 829e9a7 commit b7b0a4fCopy full SHA for b7b0a4f
1 file changed
.github/workflows/wheels.yml
@@ -11,21 +11,22 @@ jobs:
11
runs-on: ${{ matrix.os }}
12
strategy:
13
matrix:
14
- os: [ubuntu-latest, windows-latest, macos-latest]
+ # macos-13 is an intel runner, macos-14 is apple silicon
15
+ os: [ubuntu-latest, windows-latest, macos-13, macos-14]
16
17
steps:
18
- uses: actions/checkout@v4
19
with:
20
submodules: true
21
22
- name: Build wheels
- uses: pypa/cibuildwheel@v2.16.2
23
+ uses: pypa/cibuildwheel@v2.17.0
24
env:
25
CIBW_BUILD: cp*
26
CIBW_SKIP: "*-win32 *_i686 *musllinux*"
27
CIBW_TEST_REQUIRES: pytest
28
CIBW_TEST_COMMAND: pytest {package}/tests/test_chatglm_cpp.py
29
- - uses: actions/upload-artifact@v3
30
+ - uses: actions/upload-artifact@v4
31
32
path: ./wheelhouse/*.whl
0 commit comments