In Jenkins, I am running two tests in only one job. One is a smoke test and the other is a regression test.
When the smoke test is passed, then the regression test starts to run.
Both tests are done in only one build one after another.
Now I want to send an email when the smoke test is passed -- in other words, before the regression test starts.
For infomation, if the smoke test pass, than in the Jenkins console
Smoke Test:PASSED
is shown.
I have tried email-ext plugin as
Post build action
and it is sending an email after completing the total build -- in other words, after completing the regression test.
Please help me to find a solution.