From: Viktor Szakats Date: Mon, 19 Jan 2026 15:23:03 +0000 (+0100) Subject: GHA/non-native: fix size/file listing for Android shared lib X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8ba798d18ba9bff5f38fd66ca3402a90e257938;p=thirdparty%2Fcurl.git GHA/non-native: fix size/file listing for Android shared lib Follow-up to 4cf43508e8e60d0d8acef1beecb0f76040609543 #20355 --- diff --git a/.github/workflows/non-native.yml b/.github/workflows/non-native.yml index 5ac2c863ab..c9c1240119 100644 --- a/.github/workflows/non-native.yml +++ b/.github/workflows/non-native.yml @@ -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: |