Skip to content

Commit

Permalink
print instance utilization
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxRayskiy committed Oct 28, 2023
1 parent a843a6e commit 5924c7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
os: [ x64, arm ]
config: [Debug]
config: [Release]
compiler: [Сlang]
include:
- compiler: Сlang
Expand All @@ -39,7 +39,7 @@ jobs:
run: ./scripts/build_thirdparty.sh

- name: Build
run: ./scripts/build_source.sh
run: ./scripts/build_source.sh | while IFS= read -r line; do echo "Resource usage for: $line"; top -l 1 | grep -E '^(CPU|PhysMem)'; done
env:
MESHLIB_BUILD_RELEASE: ${{ fromJSON('["OFF", "ON"]')[matrix.config == 'Release'] }}
MESHLIB_BUILD_DEBUG: ${{ fromJSON('["OFF", "ON"]')[matrix.config == 'Debug'] }}
Expand Down

0 comments on commit 5924c7f

Please sign in to comment.