We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f2c4b5 + 0d6957e commit ad45906Copy full SHA for ad45906
1 file changed
.github/workflows/qemu-runtime.yml
@@ -159,6 +159,21 @@ jobs:
159
# both builds the image AND runs the tests.
160
bitbake core-image-weston
161
162
+ - name: Show per-task logs from any failed recipe
163
+ if: failure()
164
+ run: |
165
+ # When bitbake fails, the underlying tool's stderr is captured
166
+ # at tmp/work/<arch>/<recipe>/<ver>/temp/log.do_<task>.<pid>.
167
+ # Dump every such log that's recent so the failing tool's
168
+ # actual error reaches the CI output.
169
+ find poky/build/tmp/work -path '*/temp/log.do_*' \
170
+ -newer poky/build/conf/local.conf 2>/dev/null \
171
+ | while read -r f; do
172
+ echo "==== $f ===="
173
+ tail -200 "$f"
174
+ echo
175
+ done
176
+
177
- name: Surface test results
178
if: always()
179
run: |
0 commit comments