On Wed, Jan 3, 2018 at 10:22 AM, Luca Milanesio <[email protected]> wrote: > If you want to submit feedback to Gerrit in your pipeline, just add the > following statement in your pipeline script: > > gerrit.review("Verified", 1, "It works !")
I would urge you to use a plain old `Step` (no `workflow-cps` dependency except in `test` scope, no `GerritDSL` + `Gerrit.groovy`), e.g.: gerritReview status: 'Verified', vote: 1, message: 'It works!' You get a simpler implementation, *Pipeline Syntax* support, compatibility with Declarative Pipeline, and the chance to work unmodified with possible future execution engines. -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/CANfRfr3DWgR4sZktwYLB_wuynLL8TURTMF-6F_f2wkUhTBoXBA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
