CI: show curl tool and libcurl sizes

To see how they change throughout code and/or build changes.

Also:
- improve `file` output.
- tidy-ups.

Closes #20355
This commit is contained in:
Viktor Szakats 2026-01-19 12:53:40 +01:00
parent 9703dabd77
commit 4cf43508e8
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
6 changed files with 39 additions and 13 deletions

View file

@ -813,7 +813,10 @@ jobs:
- name: 'curl -V'
if: ${{ matrix.build.make-custom-target != 'tidy' }}
run: bld/src/curl --disable -V
run: |
find . -type f \( -name curl -o -name '*.so.*' -o -name '*.a' \) -print0 | xargs -0 file --
find . -type f \( -name curl -o -name '*.so.*' -o -name '*.a' \) -print0 | xargs -0 stat -c '%10s bytes: %n' --
bld/src/curl --disable -V
- name: 'curl install'
run: |