1
0
mirror of https://github.com/uutils/coreutils synced 2024-07-09 04:06:02 +00:00

CI/GNU: if an error is detected, don't generate the json file

Avoid to generate incorrect json files
This commit is contained in:
Sylvestre Ledru 2021-06-22 14:25:32 +02:00
parent d3181fa60e
commit ed8d390ca7

View File

@ -62,6 +62,10 @@ jobs:
FAIL=$(sed -n "s/.*# FAIL: \(.*\)/\1/p" "$LOG_FILE"|tr -d '\r'|head -n1)
XPASS=$(sed -n "s/.*# XPASS: \(.*\)/\1/p" "$LOG_FILE"|tr -d '\r'|head -n1)
ERROR=$(sed -n "s/.*# ERROR: \(.*\)/\1/p" "$LOG_FILE"|tr -d '\r'|head -n1)
if [[ "$TOTAL" --eq 0 || "$TOTAL" --eq 1 ]]; then
echo "Error in the execution, failing early"
exit 1
fi
output="GNU tests summary = TOTAL: $TOTAL / PASS: $PASS / FAIL: $FAIL / ERROR: $ERROR"
echo "${output}"
if [[ "$FAIL" -gt 0 || "$ERROR" -gt 0 ]]; then echo "::warning ::${output}" ; fi