From 88a9ebe300519b75cc8018db11a0ba70c68aa87e Mon Sep 17 00:00:00 2001 From: remittor Date: Wed, 31 Dec 2025 18:55:52 +0300 Subject: [PATCH] build: Add step "Monitor memory" --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dd084bc..7381e85 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -278,6 +278,11 @@ jobs: restore-keys: | toolchain-${{ env.G_TARGET_ARCH }}- + - name: Monitor memory + run: | + free -h + cat /proc/meminfo + - name: Build tools and toolchain id: tools if: ${{ steps.configure.outputs.status == 'success' && github.event.inputs.fake_build != 'true' }} @@ -306,6 +311,11 @@ jobs: make target/linux/compile -j$(nproc) echo "status=success" >> $GITHUB_OUTPUT + - name: Monitor memory 2 + run: | + free -h + cat /proc/meminfo + - name: Build the firmware image id: compile if: steps.tools.outputs.status == 'success'