File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -11,21 +11,22 @@ jobs:
11
11
runs-on : ${{ matrix.os }}
12
12
strategy :
13
13
matrix :
14
- os : [ubuntu-latest, windows-latest, macos-latest]
14
+ # macos-13 is an intel runner, macos-14 is apple silicon
15
+ os : [ubuntu-latest, windows-latest, macos-13, macos-14]
15
16
16
17
steps :
17
18
- uses : actions/checkout@v4
18
19
with :
19
20
submodules : true
20
21
21
22
- name : Build wheels
22
- uses : pypa/cibuildwheel@v2.16.2
23
+ uses : pypa/cibuildwheel@v2.17.0
23
24
env :
24
25
CIBW_BUILD : cp*
25
26
CIBW_SKIP : " *-win32 *_i686 *musllinux*"
26
27
CIBW_TEST_REQUIRES : pytest
27
28
CIBW_TEST_COMMAND : pytest {package}/tests/test_chatglm_cpp.py
28
29
29
- - uses : actions/upload-artifact@v3
30
+ - uses : actions/upload-artifact@v4
30
31
with :
31
32
path : ./wheelhouse/*.whl
You can’t perform that action at this time.
0 commit comments