File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 types : [ published ]
1010
1111concurrency :
12- group : ${{ github.workflow }}-${{ github.ref }}
12+ group : ${{ github.workflow }}-${{ github.event_name == 'push' && github.sha || github. ref }}
1313 cancel-in-progress : ${{ github.ref != 'refs/heads/master' }}
1414
1515jobs :
Original file line number Diff line number Diff line change @@ -326,10 +326,12 @@ ld_defs=\"$(echo \"$ld_defs\" | xargs)\"")
326326 "if [ -f \" ${TARGET_ELF_PATH} \" ]; then \
327327 ${MEMBROWSE_LD_SCRIPTS_CMD} ; \
328328 ${MEMBROWSE_LD_DEFS_CMD} ; \
329+ map_arg=\"\" ; \
330+ if [ -f \" ${TARGET_ELF_PATH} .map\" ]; then map_arg=\" --map-file \\\" ${TARGET_ELF_PATH} .map\\\"\" ; fi; \
329331 if [ \" $MEMBROWSE_UPLOAD\" = \" 1\" ]; then \
330- MEMBROWSE_CMD=\" ${MEMBROWSE_EXE} report ${OPTION} \\\" ${TARGET_ELF_PATH} \\\" \\\" $ld_scripts\\\" $ld_defs --upload --github --target-name ${BOARD} /${TARGET} --api-key $ENV{MEMBROWSE_API_KEY} \" ; \
332+ MEMBROWSE_CMD=\" ${MEMBROWSE_EXE} report ${OPTION} \\\" ${TARGET_ELF_PATH} \\\" \\\" $ld_scripts\\\" $ld_defs $map_arg --upload --github --target-name ${BOARD} /${TARGET} --api-key $ENV{MEMBROWSE_API_KEY} \" ; \
331333 else \
332- MEMBROWSE_CMD=\" ${MEMBROWSE_EXE} report ${OPTION} \\\" ${TARGET_ELF_PATH} \\\" \\\" $ld_scripts\\\" $ld_defs\" ; \
334+ MEMBROWSE_CMD=\" ${MEMBROWSE_EXE} report ${OPTION} \\\" ${TARGET_ELF_PATH} \\\" \\\" $ld_scripts\\\" $ld_defs $map_arg \" ; \
333335 fi; \
334336else \
335337 if [ \" $MEMBROWSE_UPLOAD\" = \" 1\" ]; then \
You can’t perform that action at this time.
0 commit comments