Skip to content

Commit 7934f54

Browse files
author
Alex J Lennon
committed
Add --no-auto-dependencies to distro layer validation
🎯 Focused Layer Validation: - Add --no-auto-dependencies flag to yocto-check-layer - Validate only the distro layer, not all dependencies automatically - Provides more targeted and controlled validation - Reduces validation scope and potential false positives This ensures the distro layer is validated independently without automatically checking all its dependencies.
1 parent 9526cc1 commit 7934f54

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/distro-layer-validation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,11 @@ jobs:
270270
echo "Testing basic recipe parsing..."
271271
bitbake -p || echo "Parse test completed"
272272
273-
# Run the layer check
273+
# Run the layer check (only check current layer, not dependencies)
274274
echo "Running yocto-check-layer..."
275275
python3 ../build/layers/openembedded-core/scripts/yocto-check-layer \
276276
--layer .. \
277+
--no-auto-dependencies \
277278
--output-log ../distro-layer-check-${{ matrix.yocto_branch }}.log \
278279
|| echo "yocto-check-layer completed with issues"
279280

0 commit comments

Comments
 (0)