From db7c29959d1b5a92070a1a0921aeb5b9eaefe30b Mon Sep 17 00:00:00 2001 From: Nash Kaminski Date: Fri, 15 Mar 2024 22:47:59 +0000 Subject: [PATCH] Log binary size after installation in CI --- .github/workflows/c-cpp.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index f56fa61..8f5b3d9 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -82,4 +82,6 @@ jobs: - name: Invoke cNTLM to ensure it is installed properly run: cntlm -h - name: Enforce that the debug symbols have been stripped in the packaged binary - run: file /usr/sbin/cntlm | grep -E ', stripped$' + run: | + du -h /usr/sbin/cntlm + file /usr/sbin/cntlm | grep -E ', stripped$' \ No newline at end of file