Skip to content

Commit 079c9dc

Browse files
committed
wip package-hipo
1 parent 176d25b commit 079c9dc

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

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

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ jobs:
4444
- name: Install sdist
4545
run: |
4646
ls dist
47-
python3 -m pip install dist/*.tar.gz --break-system-packages
47+
python3 -m pip install dist/*.tar.gz \
48+
--config-settings=cmake.define.HIPO=ON \
49+
--break-system-packages
4850
4951
- name: Test highspy
5052
run: |
@@ -70,14 +72,17 @@ jobs:
7072
- name: Install sdist
7173
run: |
7274
$item = Get-ChildItem dist
73-
python -m pip install "$item"
75+
python -m pip install "$item" `
76+
--config-settings=cmake.define.HIPO=ON `
77+
--config-settings=cmake.define.BUILD_OPENBLAS=ON
7478
python -c "import highspy; print(dir(highspy))"
7579
7680
- name: Test highspy
7781
run: |
7882
python -m pip install pytest
79-
python -m pytest
80-
83+
python -m pytest
84+
python -m pytest $env:GITHUB_WORKSPACE/check/test_highspy_hipo.py
85+
8186
build_wheel_linux:
8287
runs-on: ubuntu-24.04
8388
strategy:

0 commit comments

Comments
 (0)