From d2e9f9d96de2823bac233eb01389f9652cacfa0e Mon Sep 17 00:00:00 2001 From: Martin Evans Date: Sat, 5 Aug 2023 23:20:12 +0100 Subject: [PATCH] Added `ldd -r libllama.so` to try and discover is dependencies are missing --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c6582842..7f021fe1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }}