GHA/non-native: fix size/file listing for Android shared lib

Follow-up to 4cf43508e8 #20355
This commit is contained in:
Viktor Szakats 2026-01-19 16:23:03 +01:00
parent 4cf43508e8
commit b8ba798d18
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -309,8 +309,8 @@ jobs:
- name: 'curl info'
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' --
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' --
- name: 'build tests'
run: |