Skip to content

Commit 86abc2c

Browse files
committed
more
1 parent c563a17 commit 86abc2c

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

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

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,8 @@ jobs:
215215
run: |
216216
echo "----- ls"
217217
ls
218-
echo "----- ls lib"
219-
ls lib
218+
echo "----- ls installs/lib"
219+
ls ${{runner.workspace}}/installs/lib
220220
LD_LIBRARY_PATH=${{runner.workspace}}/installs/lib ./bin/main
221221
222222
fetch:
@@ -276,7 +276,11 @@ jobs:
276276
277277
- name: Configure CMake
278278
run: |
279+
echo "----- ls installs/lib"
280+
ls ${{runner.workspace}}/installs/lib
281+
echo "----- ls build"
279282
ls ${{runner.workspace}}/build
283+
echo "-----"
280284
rm -rf ${{runner.workspace}}/build
281285
cmake -E make_directory ${{runner.workspace}}/build
282286
cd CMakeHighsFetchContent
@@ -287,6 +291,11 @@ jobs:
287291
-DMETIS_ROOT=${{runner.workspace}}/installs \
288292
-DBRANCH=${{matrix.branch}} \
289293
-DCMAKE_INSTALL_PREFIX=${{runner.workspace}}/installs
294+
295+
- name: Build
296+
working-directory: ${{runner.workspace}}/build
297+
run: |
298+
ls
290299
cmake --build . --parallel
291300
cmake --install .
292301

0 commit comments

Comments
 (0)