File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -71,13 +71,17 @@ jobs:
7171
7272 - name : Verify Zephyr setup (from cache or fresh)
7373 run : |
74- # Activate venv and check west
75- source fprime-venv/bin/activate
76- west --version
77- echo "Workspace modules:"
78- west list | wc -l
74+ echo "=== Verification ==="
75+ echo "Workspace modules installed:"
76+ find lib/zephyr-workspace/modules lib/zephyr-workspace/bootloader -name '.git' -type d 2>/dev/null | wc -l || echo "0"
77+ echo ""
7978 echo "SDK toolchain:"
80- ls -la ~/zephyr-sdk-0.17.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc || echo "Not found"
79+ if [ -f ~/zephyr-sdk-0.17.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc ]; then
80+ echo "✓ ARM toolchain installed"
81+ ls -lh ~/zephyr-sdk-0.17.2/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc | awk '{print "Size:", $5}'
82+ else
83+ echo "✗ ARM toolchain not found"
84+ fi
8185
8286 - name : Display setup statistics
8387 run : |
You can’t perform that action at this time.
0 commit comments