From b8ba798d18ba9bff5f38fd66ca3402a90e257938 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 19 Jan 2026 16:23:03 +0100 Subject: [PATCH] GHA/non-native: fix size/file listing for Android shared lib Follow-up to 4cf43508e8e60d0d8acef1beecb0f76040609543 #20355 --- .github/workflows/non-native.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: |