Re: SonarCloud JenkinsCI organisation?

2020-02-11 Thread Mark Waite
I'm looking to track progress in areas like: - code coverage by automated tests - spotbugs warnings - style checker warnings like checkstyle and pmd - security check results - dependency check results I want something that persists longer than jobs in a Jenkins instance and allows

Re: SonarCloud JenkinsCI organisation?

2020-02-11 Thread Radosław Antoniuk
Hi Mark, What kind of metrics are you looking for? Are you talking about code quality metrics? from what components? Yes, you should be able to re-use it simply from our repositories. If you are talking about visualising non-code-quality metrics, then probably Grafana would be a better choice.

Re: SonarCloud JenkinsCI organisation?

2020-02-11 Thread Radosław Antoniuk
Hi all, For future reference, I made it work with my personal organisation on SC, here are the relevant changes: https://github.com/jenkinsci/jira-plugin/commit/56cbe1d54eacfed207a7c6bfa04ce56cccfd604c https://github.com/jenkinsci/jira-plugin/commit/87c75543e8c8827e704beb7ea9427558c45cfb1a

What is the process for deprecating plugin now when the wiki is read only?

2020-02-11 Thread Oliver Gondža
I have not noticed the process was updated... Thanks! -- oliver -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: What is the process for deprecating plugin now when the wiki is read only?

2020-02-11 Thread Daniel Beck
Deprecating via wiki label had the same effect as https://jenkins.io/doc/developer/publishing/removing-from-distribution/ so that is its replacement at the moment. This change was announced in https://groups.google.com/d/msg/jenkinsci-dev/t_qgJ4PEOz8/dRLhfM2oDQAJ FWIW I plan to improve this with

Re: SonarCloud JenkinsCI organisation?

2020-02-11 Thread Mark Waite
I would like to know how to publish a better set of metrics to SonarCloud from the jobs that I run on ci.jenkins.io. If that isn't feasible, then I'd like to know how to publish a better set of metrics from jobs that I run on my own CI servers. I think that I can probably extract the techniques

Can a plugin's CasC config model be different to its Web UI config model?

2020-02-11 Thread Chris Kilding
Hello, I'm adding an optional list property to a plugin's configuration. This is a particularly tricky kind of property, as it results in lots of nesting in the config data model to make the Web UI's /configure page work. I would like to present a simpler data model to CasC without the

Re: Can a plugin's CasC config model be different to its Web UI config model?

2020-02-11 Thread Jesse Glick
The `structs` API defines a `CustomDescribableModel` for this sort of thing, used for example by Pipeline. However `configuration-as-code` has its own incompatible model. I think you can implement either `RootElementConfigurator` or `Configurable`. -- You received this message because you are