Re: Override Label parameter in Freestyle job

2021-04-19 Thread David Drum
The Groovy Label Assignment plugin does what I want. On Friday, April 16, 2021 at 8:50:43 PM UTC-5 David Drum wrote: > Thanks; that is the exact plugin whose Label parameter value I am trying > to override and have Jenkins use the updated

Re: Updates site down?

2021-04-19 Thread Slide
Yes, it is a known issue. The Infra team is looking into it. On Mon, Apr 19, 2021 at 12:50 PM Alan Sparks wrote: > Seems like the Jenkins update site is throwing 503 errors… known issue? > Thanks. > > -Alan > > -- > You received this message because you are subscribed to the Google Groups >

Updates site down?

2021-04-19 Thread Alan Sparks
Seems like the Jenkins update site is throwing 503 errors... known issue? Thanks. -Alan -- 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

Re: how can I iterate a json with a list of objects in a pipeline?

2021-04-19 Thread jesus fernandez
Thanks it works now! El lunes, 19 de abril de 2021 a las 18:55:19 UTC+2, davidmic...@gmail.com escribió: > You're missing the most important value of what JsonSlurper (and similar > tools) provides. There is no reason to iterate maps, and it's important to > realize that there is no ordering

Re: how can I iterate a json with a list of objects in a pipeline?

2021-04-19 Thread David Karr
You're missing the most important value of what JsonSlurper (and similar tools) provides. There is no reason to iterate maps, and it's important to realize that there is no ordering guarantee of map values. If you want to reference the "issues" property, just reference "json.issues". You will

how can I iterate a json with a list of objects in a pipeline?

2021-04-19 Thread jesus fernandez
I have a json object which I receive in my jenkins pipeline through a url and I parse it like this: ``` def url = 'http://localhost:8080/job/find_issues/22/cppcheck/all/api/json' def json = new JsonSlurper().parseText( new URL(url).text ) ``` Which has this format ``` { "_class":

email-ext report with detailed pipeline steps

2021-04-19 Thread jksuser
Hello, I would like to generate a mail-report that contains the log excerpts of the failed steps of a pipeline. The scenario is that a pipeline job runs a compilation on different nodes (e.g. Ubuntu, Windows, ...). In case on of the steps fails I would like to include the success/failed

How to get rid of noisy warning "No suitable checks publisher found"

2021-04-19 Thread Amedee Van Gasse
One of the Jenkins plugins dragged in the *Checks API* as a dependency and now *EVERY* build has this annoying message at the bottom: [Checks API] No suitable checks publisher found. This does not fail any build by itself. It's just annoying noise and I don't want it. And now each time a

Push Lighthouse report data from Jenkins to Splunk

2021-04-19 Thread Swetha Gorantla
HI, By using Puppeteer and Lighthouse tools we developed a script to test the front end web performance. These scripts are scheduled in Jenkins such that it runs regularly. We are doing Lighthouse test for multiple pages of a web application like Homepage --> signin --> search --> add item to