File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ edited () {
13
13
14
14
dependency () {
15
15
if edited " $1 " && ! edited " $2 " ; then
16
- echo " '$1 ' was modified, but not '$2 '! $3 " | xargs
16
+ echo >&2 " ::warning '$1 ' was modified, but not '$2 '! $3 " | xargs
17
17
fi
18
18
}
19
19
Original file line number Diff line number Diff line change 169
169
if [[ " $failed " -eq 0 ]]; then
170
170
echo " ${bold}${green} All ${tests} tests passed!${rescolors}${resbold} "
171
171
else
172
- echo " ${bold}${red}${failed} of the tests failed!${rescolors}${resbold} "
172
+ echo " ::warning ${bold}${red}${failed} of the RGBASM tests failed!${rescolors}${resbold} "
173
173
fi
174
174
175
175
exit $rc
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ rc=$((rc || $?))
125
125
if [[ " $failed " -eq 0 ]]; then
126
126
echo " ${bold}${green} All ${tests} tests passed!${rescolors}${resbold} "
127
127
else
128
- echo " ${bold}${red}${failed} of the tests failed!${rescolors}${resbold} "
128
+ echo " ::warning ${bold}${red}${failed} of the RGBFIX tests failed!${rescolors}${resbold} "
129
129
fi
130
130
131
131
exit $rc
Original file line number Diff line number Diff line change 104
104
if [[ " $failed " -eq 0 ]]; then
105
105
echo " ${bold}${green} All ${tests} tests passed!${rescolors}${resbold} "
106
106
else
107
- echo " ${bold}${red}${failed} of the tests failed!${rescolors}${resbold} "
107
+ echo " ::warning ${bold}${red}${failed} of the RGBGFX tests failed!${rescolors}${resbold} "
108
108
fi
109
109
110
110
exit $rc
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ evaluateTest
331
331
if [[ " $failed " -eq 0 ]]; then
332
332
echo " ${bold}${green} All ${tests} tests passed!${rescolors}${resbold} "
333
333
else
334
- echo " ${bold}${red}${failed} of the tests failed!${rescolors}${resbold} "
334
+ echo " ::warning ${bold}${red}${failed} of the RGBLINK tests failed!${rescolors}${resbold} "
335
335
fi
336
336
337
337
exit $rc
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ test_downstream() { # owner repo make-target build-file build-hash
63
63
make -j4 " $3 " RGBDS=../../
64
64
hash=" $( sha1sum -b " $4 " | head -c 40) "
65
65
if [ " $hash " != " $5 " ]; then
66
- echo >&2 ' SHA-1 hash of ' " $4 " ' did not match: ' " $hash "
66
+ echo >&2 ' ::warning SHA-1 hash of ' " $4 " ' did not match: ' " $hash "
67
67
return 1
68
68
fi
69
69
popd
You can’t perform that action at this time.
0 commit comments