Skip to content

Commit 3d96bd6

Browse files
committed
path to mps
1 parent 57e3258 commit 3d96bd6

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.github/workflows/hipo-macos-gh.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
8282
- name: Test executable
8383
working-directory: ${{runner.workspace}}/build
84-
run: ./bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
84+
run: |
85+
./bin/highs --solver=hipo
86+
${{runner.workspace}}/highs-tests/HiGHS/check/instances/afiro.mps
8587
8688
- name: Ctest
8789
working-directory: ${{runner.workspace}}/build

.github/workflows/hipo-ubuntu-gh.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ jobs:
106106
107107
- name: Test executable
108108
working-directory: ${{runner.workspace}}/build
109-
run: ./bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
109+
run: |
110+
./bin/highs --solver=hipo \
111+
$${{runner.workspace}}/highs-tests/HiGHS/check/instances/afiro.mps
110112
111113
- name: Ctest
112114
working-directory: ${{runner.workspace}}/build

.github/workflows/hipo-win-gh.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,10 @@ jobs:
4242

4343
- name: Configure cmake
4444
shell: bash
45-
working-directory: ${{runner.workspace}}/highs-tests/highs
4645
run: |
47-
cmake $GITHUB_WORKSPACE \
46+
cmake \
47+
-S ${{runner.workspace}}/highs-tests/HiGHS \
48+
-B ${{runner.workspace}}/build \
4849
-DHIPO=ON \
4950
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
5051
@@ -59,7 +60,9 @@ jobs:
5960
- name: Test executable
6061
shell: bash
6162
working-directory: ${{runner.workspace}}/build
62-
run: ./Release/bin/highs --solver=hipo $GITHUB_WORKSPACE/check/instances/afiro.mps
63+
run: |
64+
./Release/bin/highs --solver=hipo \
65+
$${{runner.workspace}}/highs-tests/HiGHS/check/instances/afiro.mps
6366
6467
- name: Ctest
6568
shell: bash

0 commit comments

Comments
 (0)