Skip to content

Commit

Permalink
fix find invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
assignUser committed Jan 22, 2025
1 parent 13af77c commit b9927b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ jobs:
pushd '_build/${{ matrix.type }}'
# . to also check in lib for mono build
find . -type f -name 'libvelox*.so' -o -name 'libvelox*.a' -exec ls -l -BB {} \; |
find . -type f -name 'libvelox*.so' -o -name 'libvelox*.a' | xargs ls -l -BB |
awk '{print $5, $9; total += $5} END {print total," total_lib_size"}' > $sizes_file
find velox -type f -name '*.o' -exec ls -l -BB {} \; |
find velox -type f -name '*.o' | ls -l -BB |
awk '{print $5, $9; total += $5} END {print total," total_obj_size"}' >> $sizes_file
find velox -type f -name 'velox_*' -exec ls -l -BB {} \; |
find velox -type f -name 'velox_*' | ls -l -BB |
awk '{print $5, $9; total += $5} END {print total," total_exec_size"}' >> $sizes_file
echo "::group::Size file for ${{ matrix.link-type }} - ${{ matrix.type }}"
Expand Down

0 comments on commit b9927b6

Please sign in to comment.