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

CI: Also ignore intermittent when starting to pass

Example:
Congrats! The gnu test tests/tail-2/inotify-dir-recreate is no longer failing!
This commit is contained in:
Sylvestre Ledru 2023-03-18 17:42:08 +01:00
parent d41591f293
commit 7fd0e1e64d

View File

@ -226,9 +226,17 @@ jobs:
for LINE in ${REF_FAILING}
do
if ! grep -Fxq ${LINE}<<<"${NEW_FAILING}"; then
MSG="Congrats! The gnu test ${LINE} is no longer failing!"
echo "::warning ::$MSG"
echo $MSG >> ${COMMENT_LOG}
if ! grep ${LINE} ${IGNORE_INTERMITTENT}
then
MSG="Congrats! The gnu test ${LINE} is no longer failing!"
echo "::warning ::$MSG"
echo $MSG >> ${COMMENT_LOG}
else
MSG="Skipping an intermittent issue ${LINE}"
echo "::warning ::$MSG"
echo $MSG >> ${COMMENT_LOG}
echo ""
fi
fi
done
for LINE in ${NEW_FAILING}