Skip to content

Commit 2dcae0c

Browse files
fix: fix build lib
1 parent 1d97b53 commit 2dcae0c

File tree

4 files changed

+19
-0
lines changed

4 files changed

+19
-0
lines changed

.github/workflows/wheels_arm64.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ jobs:
2929

3030
- name: Install cibuildwheel
3131
run: python -m pip install cibuildwheel
32+
- name: Build lib
33+
run: python setup.py build_lib
34+
- name: Build cffi
35+
run: python setup.py build_cffi
3236

3337
- name: Build wheels
3438
run: python -m cibuildwheel --output-dir wheelhouse

.github/workflows/wheels_linux.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
run: sudo apt-get update && sudo apt-get install -y build-essential libssl-dev libffi-dev python3-dev cmake
2323
- name: Install cibuildwheel
2424
run: python -m pip install cibuildwheel
25+
- name: Build lib
26+
run: python setup.py build_lib
27+
- name: Build cffi
28+
run: python setup.py build_cffi
29+
30+
2531
- name: Build wheels
2632
run: python -m cibuildwheel --output-dir wheelhouse
2733
env:

.github/workflows/wheels_osx.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020

2121
- name: Install cibuildwheel
2222
run: python -m pip install cibuildwheel
23+
- name: Build lib
24+
run: python setup.py build_lib
25+
2326

2427
- name: Build wheels
2528
run: python -m cibuildwheel --output-dir wheelhouse

.github/workflows/wheels_win_64.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ jobs:
2323
- name: Install cibuildwheel
2424
run: python -m pip install cibuildwheel
2525

26+
- name: Build lib
27+
run: python setup.py build_lib
28+
- name: Build cffi
29+
run: python setup.py build_cffi
30+
31+
2632
- name: Build wheels
2733
run: python -m cibuildwheel --output-dir wheelhouse
2834
env:

0 commit comments

Comments
 (0)