Skip to content

Commit 653774e

Browse files
committed
[CI] Add manul wheel workflow
1 parent 31bab4d commit 653774e

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.github/workflows/wheel.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Wheel
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
wheel:
8+
strategy:
9+
max-parallel: 2
10+
# let some wheels complete even if others fail
11+
fail-fast: false
12+
matrix:
13+
python_version: ['3.9']
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Setup Python ${{ matrix.python_version }}
20+
uses: actions/setup-python@v5
21+
with:
22+
python-version: ${{ matrix.python_version }}
23+
architecture: x64
24+
25+
- name: Build Python package
26+
run: python setup.py bdist_wheel
27+
28+
#- name: Upload a Build Artifact
29+
# uses: actions/upload-artifact@v4
30+
# with:
31+
# name: python_javabridge-2.4.4-cp39-cp39-manylinux-x86_64.whl
32+
# path: dist/

0 commit comments

Comments
 (0)