I'm about to develop a plugin for Jenkins which should post some build artifacts of some builds of some jobs to an external service.
More specifically:
Maybe someone who knows the plugin API a bit more than me can give me a hint on which extension points I'll need. Right know I am looking into the BuildWrapper for the per-job configuration and I think I'll need a customer Action which I register to the build details view, but I am not sure how to do that. I don't think I can use the ArtifactManager because it looks like this one automatically iterates over all archived files as a build step.
Thanks you :-)
--
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 jenkinsci-de...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/b545ad1d-3b61-490a-93ec-991312cd3db2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I would like to have another action displayed in the details view of a specific build:
As the appropriate hudson model seems to be Run, I'd expect to find a RunProperty extension point or something along that name, but I couldn't find it. So the only way that comes to my mind is to register a RunListener and call run.addAction(...). Is that the right way or am I off track?