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'