From cf6651c781bc2eb3011eec457fa3f0b1d2874e82 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta <73165318+soumeh01@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:21:34 +0200 Subject: [PATCH 1/2] Add debug install step to buildmgr workflow Added a debug installation step to list files in the cbuild directory. --- .github/workflows/buildmgr.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/buildmgr.yml b/.github/workflows/buildmgr.yml index ea20c5683..316ba5c2a 100644 --- a/.github/workflows/buildmgr.yml +++ b/.github/workflows/buildmgr.yml @@ -669,6 +669,12 @@ jobs: echo "$AC5_TOOLCHAIN_ROOT" >> config echo "$GCC_TOOLCHAIN_ROOT" >> config ./cbuild_install.sh < config + + - name: Debug install + run: | + ls -R + working-directory: ${{ github.workspace }}/cbuild + - name: Test cbuildgen shell: bash run: | From e36b9a61c9fe34c3e3f067aee61ed922bc868175 Mon Sep 17 00:00:00 2001 From: Sourabh Mehta <73165318+soumeh01@users.noreply.github.com> Date: Mon, 29 Jun 2026 12:55:30 +0200 Subject: [PATCH 2/2] Add condition for Debug install step in workflow --- .github/workflows/buildmgr.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/buildmgr.yml b/.github/workflows/buildmgr.yml index 316ba5c2a..6becaa2e2 100644 --- a/.github/workflows/buildmgr.yml +++ b/.github/workflows/buildmgr.yml @@ -671,6 +671,7 @@ jobs: ./cbuild_install.sh < config - name: Debug install + if: ${{ startsWith(matrix.runs_on, 'macos') || startsWith(matrix.runs_on, 'ubuntu') }} run: | ls -R working-directory: ${{ github.workspace }}/cbuild