From 4f3fc261301b928fe0adbaf040f18f4edd83c3f7 Mon Sep 17 00:00:00 2001 From: Thomas Devoogdt Date: Fri, 10 Jan 2025 15:17:04 +0100 Subject: [PATCH] workflows: pr-compile-check.yaml: assert the linked system libs Check if the system lib is effectively linked as expected. Signed-off-by: Thomas Devoogdt --- .github/workflows/pr-compile-check.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-compile-check.yaml b/.github/workflows/pr-compile-check.yaml index 13e73505535..f6f95273240 100644 --- a/.github/workflows/pr-compile-check.yaml +++ b/.github/workflows/pr-compile-check.yaml @@ -76,5 +76,10 @@ jobs: - name: Display dependencies w/ ldd run: | - ldd ./bin/fluent-bit + export ldd_result=$(ldd ./bin/fluent-bit) + echo "ldd result: $ldd_result" + echo "$ldd_result" | grep libjemalloc + echo "$ldd_result" | grep libluajit + echo "$ldd_result" | grep libsqlite3 + echo "$ldd_result" | grep libnghttp2 working-directory: build