From 1f4d40ce879ed76b82bcf558c28dc20c95065a2a Mon Sep 17 00:00:00 2001 From: Dennis Dyall Date: Tue, 30 Apr 2024 12:32:54 +0200 Subject: [PATCH] add ldd --- .github/workflows/test-and-cover.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test-and-cover.yml b/.github/workflows/test-and-cover.yml index 65395ba5..1a822fb4 100644 --- a/.github/workflows/test-and-cover.yml +++ b/.github/workflows/test-and-cover.yml @@ -67,6 +67,16 @@ jobs: run: | dotnet restore + - name: Ldd + if: matrix.os == 'ubuntu-latest' + run: | + ldd $HOME/.nuget/packages/yubico.nativeshims/1.10.0/runtimes/linux-x64/native/libYubico.NativeShims.so + - name: Ldd + if: matrix.os == 'ubuntu-latest' + run: | + cd /usr && find . -name libudev.so* + + - name: Run Tests on Ubuntu if: matrix.os == 'ubuntu-latest' run: |