Skip to content

Commit cddfd59

Browse files
committed
Verification Patch
1 parent d9d5fb9 commit cddfd59

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)