Skip to content

Commit e66e836

Browse files
committed
wip
1 parent 28446f2 commit e66e836

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/hipo-fetch.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build
2929
working-directory: ${{runner.workspace}}/build
3030
run: |
31-
cmake --build . --parallel
31+
cmake --build . -j2
3232
3333
- name: Test executable
3434
working-directory: ${{runner.workspace}}/build
@@ -71,7 +71,7 @@ jobs:
7171
- name: Build
7272
working-directory: ${{runner.workspace}}/build
7373
run: |
74-
cmake --build . --parallel
74+
cmake --build . -j2
7575
7676
- name: Test executable
7777
working-directory: ${{runner.workspace}}/build
@@ -113,7 +113,7 @@ jobs:
113113
- name: Build
114114
working-directory: ${{runner.workspace}}/build
115115
run: |
116-
cmake --build . --parallel
116+
cmake --build . -j2
117117
118118
- name: Test executable
119119
working-directory: ${{runner.workspace}}/build
@@ -194,7 +194,6 @@ jobs:
194194
cmake --build . --parallel
195195
196196
- name: Test executable
197-
working-directory: ${{runner.workspace}}/build
198197
run: ./bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
199198

200199
- name: Ctest

cmake/FindHipoDeps.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ 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-
set(SKIP_PARSE_GETARCH TRUE)
25+
# set(SKIP_PARSE_GETARCH TRUE)
2626
else()
2727
message(STATUS "ARM architecture detected. Applying -DTARGET=ARMV8.")
2828
list(APPEND OPENBLAS_MINIMAL_FLAGS -DTARGET=ARMV8)
2929
endif()
3030
endif()
3131

3232
# CMAKE_SIZEOF_VOID_P is 4 for 32-bit builds, 8 for 64-bit builds.
33-
if(WIN32 AND CMAKE_SIZEOF_VOID_P EQUAL 4)
33+
if(CMAKE_SIZEOF_VOID_P EQUAL 4)
3434
message(STATUS "32-bit target detected. Applying 32-bit configuration flags for OpenBLAS.")
3535
set(OPENBLAS_32 ON)
3636

0 commit comments

Comments
 (0)