Browse Source

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

tags/v0.4.2-preview^2
Martin Evans 2 years ago
parent
commit
d2e9f9d96d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .github/workflows/main.yml

+ 1
- 1
.github/workflows/main.yml 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 }}

Loading…
Cancel
Save