From 28b17bb9022c0ec1d32f9c7e3dd1a5dadc0e5f4b 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 164c9eecd..d763d21ca 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