Customize build monitor text
See original GitHub issueI would like the ability to customize the build monitor text dynamically from a Jenkinsfile. e.g.…
pipeline {
stages {
stage('Run Analysis') {
steps {
// do some stuff
// the text I want to display in Build Monitor is now in output.txt
}
}
stage('Update Build Monitor') {
steps {
// ???
}
}
}
}
I couldn’t find any way to do this in the docs. Is this possible currently? If not, I would like to submit it as a feature request.
<bountysource-plugin>Want to back this issue? Post a bounty on it! We accept bounties via Bountysource. </bountysource-plugin>
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
Build Monitor View - Jenkins Plugins
Provides a highly visible view of the status of selected Jenkins jobs. It easily accommodates different computer screen sizes and is ideal ...
Read more >Jenkins Beginner Tutorial - How to create Build Monitor View
more from Raghav - https://automationstepbystep.com/JENKINS : Build Monitor ViewToday we will learn:1. What is Build Monitor View plugin2.
Read more >Something Look Off on Your Monitor? Tweak These Windows ...
Click the drop-down menu for Change the size of text, apps, and other items and you can to make the screen larger by...
Read more >How to create personalized(with passed/failed tests) Jenkins ...
I have several tests jobs and I have a dashboard (Build Monitor View) for the same to display status. Which displays Job Name,...
Read more >How to Configure Display Scaling in Windows 10 - Alphr
Note: It is best to have monitors with the same or proportionally similar resolution. Otherwise, you may end up with blurred text and...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
For every build you can set a description programmatically. By default it contains a date of build I believe. Just put a HTML there, e.g.:
currentBuild.description='line1<br/>HTML test<br/>line2'
What you can do today is: