From 83c386f237453ed3010dd2e202c687e2e1727609 Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Fri, 23 Feb 2024 12:51:49 +0100 Subject: [PATCH] server: test: ci debug LD path --- .github/workflows/server-test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/server-test.yml b/.github/workflows/server-test.yml index 40f8b6d80..bc39eb5ab 100644 --- a/.github/workflows/server-test.yml +++ b/.github/workflows/server-test.yml @@ -97,6 +97,7 @@ jobs: dpkg -i cuda-keyring_1.1-1_all.deb apt-get update apt-get -y install cuda-toolkit + find / -type f -name "*cuda*so*" - name: Build id: cmake_build @@ -105,6 +106,7 @@ jobs: cd build cmake .. -DLLAMA_SANITIZE_${{ matrix.sanitizer }}=ON -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ${{ matrix.defines }} cmake --build . --config ${{ matrix.build_type }} -j $(nproc) --target server + ldd bin/server - name: Tests dependencies id: test_dependencies