Skip to content

Commit

Permalink
workflows: pr-compile-check.yaml: assert the linked system libs
Browse files Browse the repository at this point in the history
Check if the system lib is effectively linked as expected.

Signed-off-by: Thomas Devoogdt <[email protected]>
  • Loading branch information
ThomasDevoogdt committed Jan 10, 2025
1 parent 77d67ab commit 4f3fc26
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/pr-compile-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4f3fc26

Please sign in to comment.