From 54d795480c9955ce9df6b581b2a27bffab0f2f7c Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Fri, 12 Jul 2024 07:06:28 -0600 Subject: [PATCH] ci: Show memory layout I regularly use the `.mem` file to determine the impact changes have on the RAM and flash usage. Print it as part of CI so I can easily see it for all boards. Signed-off-by: Tim Crawford --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 164c9ee..d763d21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,3 +61,7 @@ jobs: - name: Build firmware run: make BOARD=${{ matrix.boards }} VERBOSE=1 + + - name: Show memory layout + run: cat build/ec.mem + continue-on-error: true