Added `ldd -r libllama.so` to try and discover is dependencies are missing

This commit is contained in:
Martin Evans 2023-08-05 23:20:12 +01:00
parent d3775c527e
commit d2e9f9d96d
1 changed files with 1 additions and 1 deletions

View File

@ -52,4 +52,4 @@ jobs:
- name: Build
run: dotnet build LLamaSharp.sln -c ${{ matrix.config }} --no-restore
- name: Test
run: ls ./LLama.Unittest/bin/Debug/net6.0; dotnet test LLamaSharp.sln -c ${{ matrix.config }}
run: ls ./LLama.Unittest/bin/Debug/net6.0; ldd -r libllama.so; dotnet test LLamaSharp.sln -c ${{ matrix.config }}