File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build Wheels
2+
3+ on :
4+ push :
5+ branches :
6+ - sdfsfsaf
7+
8+
9+
10+ jobs :
11+ build_wheels :
12+ name : Build wheels on ${{ matrix.os }}
13+ runs-on : ${{ matrix.os }}
14+ strategy :
15+ matrix :
16+ os : [ubuntu-latest, windows-latest, macos-latest]
17+
18+ steps :
19+ - uses : actions/checkout@v4
20+ - uses : actions/setup-python@v5
21+ - name : Install cibuildwheel
22+ run : python -m pip install cibuildwheel==2.23.2
23+ - name : " Install dependencies"
24+ run : |
25+ pip install setuptools wheel numpy cython
26+ - name : Build wheels
27+ run : python -m cibuildwheel --output-dir wheelhouse
28+ - uses : actions/upload-artifact@v4
29+ with :
30+ name : cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
31+ path : ./wheelhouse/*.whl
You can’t perform that action at this time.
0 commit comments