From 6a6cf065b201a99ee8b8bedf1365e75f86b9b357 Mon Sep 17 00:00:00 2001 From: freemine Date: Thu, 13 Mar 2025 07:32:16 +0800 Subject: [PATCH] chore(ci): statistics ci report sort by size desc --- .github/workflows/taosd-ci-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/taosd-ci-build.yml b/.github/workflows/taosd-ci-build.yml index c977a56462..8ec3452b71 100644 --- a/.github/workflows/taosd-ci-build.yml +++ b/.github/workflows/taosd-ci-build.yml @@ -95,8 +95,8 @@ jobs: - name: Statistics size run: | - find ${{ github.workspace }}/debug/build/lib -type f -print0 | xargs -0 ls -lh - find ${{ github.workspace }}/debug/build/bin -type f -print0 | xargs -0 ls -lh + find ${{ github.workspace }}/debug/build/lib -type f -print0 | xargs -0 ls -lhrS + find ${{ github.workspace }}/debug/build/bin -type f -print0 | xargs -0 ls -lhrS - name: Start taosd run: |