We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0933d0e commit 6323805Copy full SHA for 6323805
.github/workflows/cicd.yml
@@ -78,6 +78,16 @@ jobs:
78
run: |
79
source venv/bin/activate
80
pip install -e . --no-deps
81
+ echo "Verifying critical dependencies:"
82
+ python3 -c "import mlonmcu; print(f'✓ mlonmcu: {mlonmcu.__file__}')" || {
83
+ echo "ERROR: mlonmcu import failed, reinstalling..."
84
+ pip install -e .
85
+ }
86
+ python3 -c "import tensorflow; print(f'✓ tensorflow: {tensorflow.__version__}')" || {
87
+ echo "WARNING: tensorflow missing, installing all dependencies..."
88
89
90
+ python3 -c "import mlonmcu.setup.gen_requirements; print('✓ mlonmcu.setup accessible')"
91
92
- name: Cache MLonMCU workspace
93
id: cache-mlonmcu
0 commit comments