Jenkins : Sending Build Trend Graph as email

后端 未结 2 1504
迷失自我
迷失自我 2021-01-14 16:42

Can jenkins send as email , the build trend graphs ?

相关标签:
2条回答
  • 2021-01-14 16:48

    I beleive ,there is no such plugin for Jenkins to send an email with trend graph of build.
    For advance mailing or report , you can try plugin Email-ext

    0 讨论(0)
  • 2021-01-14 17:02

    Email-ext Plugin can send HTML e-mails. As the URL of the graph is known (for example, for the test trend graph the URL is: http://[server]/job/[job-name]/test/trend) it can be embedded into your e-mail with <img> tag like this:

    <img src="${PROJECT_URL}test/trend" />
    
    0 讨论(0)
提交回复
热议问题