Skip to content

Commit f587b69

Browse files
committed
upd
1 parent be8f169 commit f587b69

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/hipo-fetch.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,8 @@ jobs:
196196
cmake --build . --parallel
197197
198198
- name: Test executable
199-
run: ./bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
199+
working-directory: ${{runner.workspace}}/build
200+
run: ../bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
200201

201202
- name: Ctest
202203
working-directory: ${{runner.workspace}}/build

cmake/FindHipoDeps.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ if (BUILD_OPENBLAS)
2222
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
2323
message(STATUS "ARM architecture detected. Applying -DTARGET=ARMV7.")
2424
list(APPEND OPENBLAS_MINIMAL_FLAGS -DTARGET=ARMV7)
25+
list(APPEND OPENBLAS_MINIMAL_FLAGS -DNO_GETARCH=ON)
2526
# set(SKIP_PARSE_GETARCH TRUE)
2627
else()
2728
message(STATUS "ARM architecture detected. Applying -DTARGET=ARMV8.")

0 commit comments

Comments
 (0)