Skip to content

Commit 52a4a92

Browse files
committed
wiP
1 parent d7ed036 commit 52a4a92

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build-python-package-hipo.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,22 @@ jobs:
1515

1616
- name: Build sdist
1717
run: |
18-
python3 -m pip install build
18+
python3 -m pip install build
1919
python3 -m build --sdist
2020
2121
- name: Install sdist
2222
run: |
2323
ls dist
24-
python3 -m pip install dist/*.tar.gz
24+
python3 -m pip install dist/*.tar.gz \
25+
--config-settings=cmake.define.HIPO=ON \
26+
--config-settings=cmake.define.BUILD_OPENBLAS=ON
2527
2628
- name: Test highspy
2729
run: |
2830
python3 -m pip install pytest
2931
python3 -m pytest $GITHUB_WORKSPACE
30-
32+
python3 -m pytest $GITHUB_WORKSPACE/check/test_highspy_hipo.py
33+
3134
build_sdist_mac:
3235
runs-on: macos-latest
3336
steps:
@@ -47,6 +50,7 @@ jobs:
4750
run: |
4851
python3 -m pip install pytest --break-system-packages
4952
python3 -m pytest $GITHUB_WORKSPACE
53+
python3 -m pytest $GITHUB_WORKSPACE/check/test_highspy_hipo.py
5054
5155
build_sdist_win:
5256
runs-on: windows-2022

0 commit comments

Comments
 (0)