groovy access to Jenkins description

104 views
Skip to first unread message

Richard Ginga

unread,
Jan 25, 2017, 8:51:30 AM1/25/17
to jenkins...@googlegroups.com

I want to publish global information in the Jenkins main description using groovy. where is the class/method to do that?

thank you
--
Dick Ginga
Build Engineer

Richard Ginga

unread,
Jan 25, 2017, 1:56:58 PM1/25/17
to jenkins...@googlegroups.com
more specifically, i want to change the System Message programmatically.

How can I do this?

Indra Gunawan (ingunawa)

unread,
Jan 25, 2017, 2:00:29 PM1/25/17
to jenkins...@googlegroups.com

Here you go a snippet of groovy I use to post System Message on Jenkins to post Common Maintenance Windows downtime info:

 

import hudson.model.*

 

def sysMessage = Hudson.instance.systemMessage

 

 

def newSysMessage = sysMessage ?: ""

 

cmwHeader = ""

if (cmwHeader != "") {

    newSysMessage = newSysMessage + cmwHeader

} else {

    newSysMessage = newSysMessage - CMW_NOTICE_PATTERN

}

 

Hudson.instance.setSystemMessage(newSysMessage)

 

-Indra

--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-use...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/CAL3PpaXD3wbyB_EGMWbUo7akqve9T%2BnCFOhCnTJrJu7r5qCXUQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Richard Ginga

unread,
Jan 25, 2017, 2:13:49 PM1/25/17
to jenkins...@googlegroups.com
Indra, thank you very much. :)

Dick

To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscribe@googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/7B4E7B94-BC02-411D-833E-7BB91FF4AC80%40cisco.com.

For more options, visit https://groups.google.com/d/optout.
Reply all
Reply to author
Forward
0 new messages