Skip to content

Commit 9ced725

Browse files
tbitcsoz-agent
andcommitted
ci: add debug step to diagnose module discovery before Twister
Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent da7f295 commit 9ced725

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,19 @@ jobs:
135135
tar -xf /tmp/zephyr-sdk-minimal.tar.xz --strip-components=1 -C ~/zephyr-sdk
136136
~/zephyr-sdk/setup.sh -c
137137
138+
- name: Debug — module discovery
139+
run: |
140+
echo "=== west list ==="
141+
west list
142+
echo "=== modules/ ==="
143+
ls -la modules/ 2>/dev/null || echo "(no modules/ dir)"
144+
echo "=== modules/lib/ ==="
145+
ls -la modules/lib/ 2>/dev/null || echo "(no modules/lib/)"
146+
echo "=== modules/lib/arbiter/ ==="
147+
ls modules/lib/arbiter/ 2>/dev/null || echo "(no arbiter module)"
148+
echo "=== zephyr/module.yml in arbiter? ==="
149+
cat modules/lib/arbiter/zephyr/module.yml 2>/dev/null || echo "(not found)"
150+
138151
# Unit tests run as native executables on native_sim.
139152
- name: Twister — unit tests
140153
run: |

0 commit comments

Comments
 (0)