forked from lix-project/hydra
hydra-build: Do not send email following an abortion.
This commit is contained in:
parent
a3cc2ce796
commit
1f448673f0
|
@ -97,8 +97,9 @@ sub sendEmailNotification {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
# if buildstatus of this build is aborted, do not send email
|
# if buildstatus of this build or the previous one is aborted, do
|
||||||
if ($build->resultInfo->buildstatus == 3) {
|
# not send email
|
||||||
|
if ($build->resultInfo->buildstatus == 3 || (defined $prevBuild && ($prevBuild->resultInfo->buildstatus == 3))) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue