File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,13 @@ if [ ! -z "$GITHUB_STEP_SUMMARY" ] ; then
2626fi
2727
2828jq -cr ' .[]' < ./extra/targets.json | while read -r item; do
29- board=$( jq -cr ' .board' <<< " $item" )
30- args=$( jq -cr ' .args' <<< " $item" )
29+ board=$( jq -cr ' .board // "" ' <<< " $item" )
30+ args=$( jq -cr ' .args // "" ' <<< " $item" )
3131
32+ echo " Building for board: '$board ', args: '$args '"
3233 variant=$( extra/get_variant_name.sh " $board " || echo " $board " )
34+ echo " Building variant: '$variant '"
35+
3336 if [ -z " $GITHUB_STEP_SUMMARY " ] ; then
3437 echo && echo && echo
3538 echo ${variant}
Original file line number Diff line number Diff line change 66 {
"board" :
" [email protected] //m7" },
77 { "board" : " ek_ra8d1" },
88 { "board" : " frdm_mcxn947/mcxn947/cpu0" },
9- { "board" : " frdm_rw612" },
10- {}
9+ { "board" : " frdm_rw612" }
1110]
You can’t perform that action at this time.
0 commit comments