Skip to content

Commit 130cbb3

Browse files
committed
win path to blas
1 parent 97260a1 commit 130cbb3

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ jobs:
172172
run: |
173173
ls
174174
ls bin
175+
$env:path = "$env:path;C:\vcpkg\installed\x64-windows\bin\"
175176
& ".\bin\highs.exe" --version
176177
ls "${{ runner.workspace }}/highs-tests/HiGHS/check/instances/afiro.mps"
177178
& ".\bin\highs.exe" --solver=hipo `
@@ -199,13 +200,15 @@ jobs:
199200
- name: Test build
200201
working-directory: ${{runner.workspace}}/build-find
201202
run: |
203+
$env:path = "$env:path;C:\vcpkg\installed\x64-windows\bin\"
202204
& ".\${{ matrix.config }}\main.exe"
203205
204206
- name: Test install
205207
working-directory: ${{runner.workspace}}/install-find-highs
206208
run: |
207209
echo "----- ls"
208-
ls
210+
ls
211+
$env:path = "$env:path;C:\vcpkg\installed\x64-windows\bin\"
209212
.\main.exe
210213
211214
fetch:
@@ -237,7 +240,7 @@ jobs:
237240
- name: Create build and install dir
238241
run: |
239242
cmake -E make_directory ${{runner.workspace}}/build
240-
cmake -E make_directory ${{runner.workspace}}/installs
243+
cmake -E make_directory ${{runner.workspace}}/installs
241244
242245
- name: Install METIS
243246
run: |
@@ -260,7 +263,7 @@ jobs:
260263
echo "----- ls build"
261264
ls ${{runner.workspace}}/build
262265
echo "-----"
263-
cd CMakeHighsFetchContent
266+
cd CMakeHighsFetchContent
264267
cmake `
265268
-S ${{runner.workspace}}/highs-tests/CMakeHighsFetchContent `
266269
-B ${{runner.workspace}}/build `
@@ -270,14 +273,14 @@ jobs:
270273
-DCMAKE_INSTALL_PREFIX="${{runner.workspace}}/installs" `
271274
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
272275
273-
- name: Build
276+
- name: Build
274277
working-directory: ${{runner.workspace}}/build
275278
run: |
276279
ls
277280
cmake --build . --parallel --config Release
278281
cmake --install .
279282
280-
- name: Test
283+
- name: Test
281284
working-directory: ${{runner.workspace}}/build
282285
run: |
283286
ls
@@ -287,6 +290,7 @@ jobs:
287290
working-directory: ${{runner.workspace}}/installs
288291
run: |
289292
echo "----- ls"
290-
ls
293+
ls
291294
ls bin
295+
$env:path = "$env:path;C:\vcpkg\installed\x64-windows\bin\"
292296
.\bin\main.exe

0 commit comments

Comments
 (0)