1

I want to email the status of a view in Jenkins. Basically i have multiple jobs around 50 running.i know we can specially go to each job & trigger a mail status if it passes or fails but i want to email the status of all 50 jobs in one go. Thanks in advance

user4391664
  • 157
  • 1
  • 2
  • 12

1 Answers1

0

My solution to achieve this would be starting a master job that would trigger the 50 other jobs and get their output.

See this answer on how to trigger another job in pipeline and see this answer on how to get the result from the trigger job.

Once you get the triggering working you can mail the result to yourself using emailext plugin.

Victor Wong
  • 3,457
  • 1
  • 18
  • 31