File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -66,29 +66,29 @@ for artifact in $ARTIFACTS ; do
6666 if ! $( echo $REPORT | jq -cr ' .compilation_success' ) ; then
6767 SKETCH_ERRORS=$(( SKETCH_ERRORS + 1 ))
6868 ARTIFACT_STATUS=error
69- DETAILS=" ${DETAILS} $( details_line " :x :" " Compilation failed" ) \n"
69+ DETAILS=" ${DETAILS} $( details_line " :red_circle :" " Compilation failed" ) \n"
7070 else
7171 SKETCH_WARNINGS=$(( SKETCH_WARNINGS + 1 ))
7272 WARNINGS=$( echo $REPORT | jq -cr ' .warnings.current.absolute // 0' )
7373 if [ $WARNINGS -eq 0 ]; then
7474 [ $ARTIFACT_STATUS == " success" ] && ARTIFACT_STATUS=" warning"
75- DETAILS=" ${DETAILS} $( details_line " :white_check_mark :" " Build successful" ) \n"
75+ DETAILS=" ${DETAILS} $( details_line " :green_circle :" " Build successful" ) \n"
7676 else
77- DETAILS=" ${DETAILS} $( details_line " :grey_exclamation :" " $WARNINGS warnings" ) \n"
77+ DETAILS=" ${DETAILS} $( details_line " :orange_circle :" " $WARNINGS warnings" ) \n"
7878 fi
7979 fi
8080 done
8181 fi
8282
8383 case $ARTIFACT_STATUS in
8484 success)
85- artifact_entry " :white_check_mark :" " All $SKETCH_COUNT sketches built successfully"
85+ artifact_entry " :green_circle :" " All $SKETCH_COUNT sketches built successfully"
8686 ;;
8787 warning)
88- artifact_entry " :grey_exclamation :" " All $SKETCH_COUNT sketches built ($SKETCH_WARNINGS with warnings)" " $ARTIFACT_LINK "
88+ artifact_entry " :orange_circle :" " All $SKETCH_COUNT sketches built ($SKETCH_WARNINGS with warnings)" " $ARTIFACT_LINK "
8989 ;;
9090 error)
91- artifact_entry " :x :" " $SKETCH_ERRORS out of $SKETCH_COUNT sketches failed to build" " $ARTIFACT_LINK "
91+ artifact_entry " :red_circle :" " $SKETCH_ERRORS out of $SKETCH_COUNT sketches failed to build" " $ARTIFACT_LINK "
9292 ;;
9393 * )
9494 artifact_entry " :fire:" " Report file missing or unreadable"
You can’t perform that action at this time.
0 commit comments