From a252f5623a96f52c36bdf82bc24001b1dc32df97 Mon Sep 17 00:00:00 2001 From: Bruno Alexandre Rosa <1791393+brunoalr@users.noreply.github.com> Date: Thu, 6 Nov 2025 16:37:32 -0300 Subject: [PATCH] print libs --- .github/workflows/desktop-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/desktop-build.yml b/.github/workflows/desktop-build.yml index 728dbf3f0..6f25593d1 100644 --- a/.github/workflows/desktop-build.yml +++ b/.github/workflows/desktop-build.yml @@ -329,10 +329,11 @@ jobs: run: | export ARCH=$(uname -m) export NPROC=$(sysctl -n hw.ncpu) - echo "Thinning Qt libraries to $ARCH using $NPROC cores" + echo "::group::Thinning Qt libraries to $ARCH using $NPROC cores" find $RUNNER_WORKSPACE/Qt -type f -print0 | \ xargs -0 -n1 -P "$NPROC" sh -c \ - 'file -b --mime-type "$0" | grep -q "application/x-mach-binary" && lipo "$0" -thin "$ARCH" -output "$0" || true' + 'file -b --mime-type "$0" | grep -q "application/x-mach-binary" && echo "Processing $0" && lipo "$0" -thin "$ARCH" -output "$0" || true' + echo "::endgroup::" - name: Cache thin Qt libraries if: steps.restore_qt.outputs.cache-hit != 'true'