File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments