File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 38
38
- name : Use west repo cache
39
39
uses : actions/cache/restore@v4
40
40
with :
41
- path : " *"
41
+ path : " **/* "
42
42
key : west-git-${{ github.event.repository.updated_at }}
43
- restore-keys : west-git-
43
+ restore-keys : |
44
+ west-git-
44
45
45
46
- name : Initialize
46
47
run : |
67
68
- name : Save west repo cache
68
69
uses : actions/cache/save@v4
69
70
with :
70
- path : " /home/runner/work/ **/.git"
71
+ path : " **/.git"
71
72
key : west-git-${{ github.event.repository.updated_at }}
72
73
73
74
test-core :
@@ -176,13 +177,15 @@ jobs:
176
177
if [ $WARNINGS -eq 0 ]; then
177
178
echo "* :white_check_mark: [$BOARD]($JOB_URL) - Build successful" >> "$GITHUB_STEP_SUMMARY"
178
179
else
180
+ echo >> "$GITHUB_STEP_SUMMARY"
179
181
echo "<details><summary>:warning: <a href=\"$JOB_URL\">$BOARD</a> - $WARNINGS warnings:</summary>" >> "$GITHUB_STEP_SUMMARY"
180
182
echo >> "$GITHUB_STEP_SUMMARY"
181
183
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY"
182
184
echo $REPORT | jq -cr '.warnings_log[]' >> "$GITHUB_STEP_SUMMARY"
183
185
echo "\`\`\`" >> "$GITHUB_STEP_SUMMARY"
184
186
echo >> "$GITHUB_STEP_SUMMARY"
185
187
echo "</details>" >> "$GITHUB_STEP_SUMMARY"
188
+ echo >> "$GITHUB_STEP_SUMMARY"
186
189
fi
187
190
fi
188
191
fi
You can’t perform that action at this time.
0 commit comments