Skip to content

Commit 44eb409

Browse files
committed
bash
1 parent 67999f1 commit 44eb409

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/hipo-win.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,18 @@ jobs:
3737
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
3838
3939
- name: Build
40+
shell: bash
4041
working-directory: ${{runner.workspace}}/build
4142
run: |
4243
cmake --build . --parallel --config Release
4344
4445
- name: Test executable
46+
shell: bash
4547
working-directory: ${{runner.workspace}}/build
4648
run: ./Release/bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
4749

4850
- name: Ctest
51+
shell: bash
4952
working-directory: ${{runner.workspace}}/build
5053
run: |
5154
ctest --parallel --timeout 300 --output-on-failure -C Release
@@ -86,15 +89,18 @@ jobs:
8689
-DOpenBLAS_DIR=C:/vcpkg/packages/openblas_x64-windows/share/openblas
8790
8891
- name: Build
92+
shell: bash
8993
working-directory: ${{runner.workspace}}/build
9094
run: |
9195
cmake --build . --parallel --config Debug
9296
9397
- name: Test executable
98+
shell: bash
9499
working-directory: ${{runner.workspace}}/build
95100
run: ./Debug/bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
96101

97102
- name: Ctest
103+
shell: bash
98104
working-directory: ${{runner.workspace}}/build
99105
run: |
100106
ctest --parallel --timeout 300 --output-on-failure -C Debug

cmake/FindHipoDeps.cmake

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@ message(STATUS "BLAS_ROOT is " ${BLAS_ROOT})
44

55
if (WIN32)
66

7-
find_package(OpenBLAS CONFIG REQUIRED)
7+
find_package(OpenBLAS CONFIG REQUIRED)
8+
message(STATUS "OpenBLAS CMake config path: ${OpenBLAS_DIR}")
9+
810
find_package(metis CONFIG REQUIRED)
11+
message(STATUS "metis CMake config path: ${metis_DIR}")
912

1013
elseif(NOT APPLE)
1114
# LINUX

0 commit comments

Comments
 (0)