Skip to content

Commit 29d2b09

Browse files
committed
fix
1 parent e2f26ba commit 29d2b09

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/python-demo.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
7676
- name: Test get devices
7777
run: >
78-
python orca_demo.py --show_inference_devices
78+
python3 orca_demo.py --show_inference_devices
7979
8080
build-self-hosted:
8181
runs-on: ${{ matrix.machine }}
@@ -95,11 +95,11 @@ jobs:
9595
steps:
9696
- uses: actions/checkout@v3
9797

98-
# ************** REMOVE AFTER RELEASE ********************
98+
# ************** REMOVE AFTER RELEASE ********************
9999
- name: Build binding
100-
run: python3 setup.py sdist bdist_wheel
101-
working-directory: binding/python
102-
# ********************************************************
100+
run: |
101+
pip install wheel setuptools && cd ../../binding/python && python3 setup.py sdist bdist_wheel && pip install dist/pvorca-3.0.0-py3-none-any.whl --force-reinstall
102+
# ********************************************************
103103

104104
- name: Install dependencies
105105
run: pip3 install -r requirements.txt
@@ -123,4 +123,4 @@ jobs:
123123
124124
- name: Test get devices
125125
run: >
126-
python orca_demo.py --show_inference_devices
126+
python3 orca_demo.py --show_inference_devices

0 commit comments

Comments
 (0)