Stage View in Parallel Exectution

2017-04-24 Thread vishad alekh
Hi All, I am looking to implement stage view for parallel execute jobs . Let suppose i have five independent job . These five jobs will be called through one job . Now i want to show the stage of all the five jobs separately in the main job from where they are called . Please help me with thi

Supporting the Pipeline Editor with any Git server

2017-04-24 Thread James Dumay
Hi all, As part of the Pipeline Editor working with any Git server (thats right - you'll be able to use the Editor without Github!) I am trying to massively simplify the way that users setup Pipelines connected to Git repositories. I've put together a short page here: https://wiki.jenkins-ci.org/

Re: Bitbucket Branch Source plugin / Pull request handling in Jenkinsfile

2017-04-24 Thread Stephen Connolly
that is not functionality currently available, you would need to use a bitbucket cli at present to perform that On 24 April 2017 at 19:41, wrote: > Hi, > > I'd like to approve or decline a pull request within the Jenkinsfile, the > pull-request appears to have a branch-name starting with 'PR-',

Aw: How to checkout Jenkinsfile by a custom script?

2017-04-24 Thread Al Le
> So, my question is: Is it possible (and how) to have the Jenkinsfile under > version control, do the check out for it by a custom script (e.g. using a > .bat command) and then have the pipeline executed as if the Jenkinsfile had > been extracted by the "Pipeline script from SCM" option? I.e.,

Grails plugin not available in new Jenkins versions?

2017-04-24 Thread Carina Marban
Hi, I'm currently trying to migrate our jobs from a Jenkins 1.650 instance to a new one that we just updated to 2.56. Unfortunately, I seem unable to install the Grails plugin: https://wiki.jenkins-ci.org/display/JENKINS/Grails+Plugin because it is not in the list of available plugins. I also

Bitbucket Branch Source plugin / Pull request handling in Jenkinsfile

2017-04-24 Thread vanwiggen
Hi, I'd like to approve or decline a pull request within the Jenkinsfile, the pull-request appears to have a branch-name starting with 'PR-', are there any docs on how to approve or decline the pullrequest? Kind regards, Xander -- You received this message because you are subscribed to the Goo

Having Trouble with Inheritable Parameters in Jenkins, value zero is interpreted as null

2017-04-24 Thread Robert Kruck
I am having trouble with Inheritable Parameters in Jenkins My build system is still based on Build Flow, I have not converted to Pipeline yet My Jenkins version is 2.5 My "Project-Inheritance" plugin version was originally 2.0, I rolled back to 1.5.3 later, but am having the same problem with

Re: Regarding the recent waves of mailing list spam

2017-04-24 Thread Michael Hunter
I am willing to help as well. Timezone: GMT, BST. On 19 April 2017 at 21:33, Arnaud Héritier wrote: > Let's go > CEST/CET > Do we know how many new subscribers we have per day/week to see how many > we should be to moderate new members ? > > On Tue, Apr 18, 2017 at 5:10 PM, Joseph P wrote: > >>

Re: How to use email-ext plugin in pipeline script?

2017-04-24 Thread jerome
It's not so hard, it's just some behavior/limitations that are a bit hard to grasp (groovy loop anyone). I think they went on a road to provide some features at high trade back cost. If you want some examples more like real life usage: https://github.com/jenkinsci/pipeline-examples I would love

Re: Multi-branch Pipeline Plugin - comment trigger only?

2017-04-24 Thread Danny Rehelis
Allow me elaborate my question, We use Multi-branch Pipeline plugin and run CI for each git push to an open PR. I need more control to this behavior, for example: - Run CI only for the first push or, - Run CI for PRs with specific label for every push or, - Run CI upon specific comment whether

RE: How to use email-ext plugin in pipeline script?

2017-04-24 Thread David Aldrich
Understood. But the multibranch plugin is marked as deprecated and it seems that the multibranch pipeline is advised. Multibranch projects are very helpful for us so I thought it would be good to look at pipelines. I guess I may be advised to try Blue Ocean, but that is git-centric and we are

Re: How to use email-ext plugin in pipeline script?

2017-04-24 Thread Slide
I'll be completely honest here and say that pipeline isn't for everyone. Not ever build setup needs pipeline. Free style projects are just fine to use still. If they meet your needs, then I don't see a reason to switch to pipeline. On Mon, Apr 24, 2017 at 9:17 AM David Aldrich wrote: > Thanks fo

Re: AWS EC2 API Plugin

2017-04-24 Thread harold . putman
Check https://plugins.jenkins.io/ On Monday, April 24, 2017 at 11:00:20 AM UTC-4, Johnathan Kanarek wrote: > > Hi, > > I need to create images, run instances, start instances and stop instances > during build. > > Is there an existing plugin that enable AWS EC2 APIs as build steps? > > I don’t mi

RE: How to use email-ext plugin in pipeline script?

2017-04-24 Thread David Aldrich
Thanks for your answer. I’m beginning to think that pipeline scripting is too difficult. It seems to me that there aren’t enough complete examples to demonstrate this stuff. The snippets generator does not help with putting a complete script together. Jenkins seems to have gone from being ver

Re: How to use email-ext plugin in pipeline script?

2017-04-24 Thread jerome
You can check the currentBuild status just before sending the email: currentBuild.result If empty it mean nothing have set it to warning or error yet. you can set it to success if(!currentBuild.result) { currentBuild.result = 'SUCCESS' } or you could set it directly into the email without tou

How to use email-ext plugin in pipeline script?

2017-04-24 Thread David Aldrich
Hi Here's my pipeline: 1. node('pc1') { 2. 3. stage('Checkout') { 4. checkout([$class: 'SubversionSCM', 5. additionalCredentials: [[credentialsId: '', realm: '']], 6. excludedCommitMessages: '', 7. excludedRegions: '', 8. excludedRevprop: '', 9. excludedUsers: '',

AWS EC2 API Plugin

2017-04-24 Thread Johnathan Kanarek
Hi, I need to create images, run instances, start instances and stop instances during build. Is there an existing plugin that enable AWS EC2 APIs as build steps? I don’t mind creating one by myself, but prefer to use existing one. Johnathan. -- You received this message because you are

email-ext no mor resolve template absolute path

2017-04-24 Thread jerome
Hi, is there a change into email-ext lately (I was into Jenkins 2.51 and email-ext 2.56, now updated to Jenkins 2.54 with 2.57.2) that could prevent email-ext to fetch template into the node with an absolute path? My outgoing email used to work now I receive this into my email body: Jelly file

Re: Connecting software development tools to an e-learning platform

2017-04-24 Thread Victor Martinez
You already asked something similar a few days ago: - https://groups.google.com/forum/#!topic/jenkinsci-users/CunEt1ISDis - https://groups.google.com/forum/#!topic/jenkinsci-dev/I45iPY9olzk Maybe it's worth reusing the same thread, since some people already replied back with some approaches/ideas

How to checkout Jenkinsfile by a custom script?

2017-04-24 Thread Al Le
Hello, I've created a Jenkins job of type "Pipeline" and used an inline pipeline script. Now I'd like to put the script under version control and use the "Pipeline script from SCM" option (I think, I don't have to describe the merits of this). However, our version control system (CA SCM) is no

Scripts not permitted to use a method already approve in In-process Script Approval GUI

2017-04-24 Thread Romaric Crailox
Hello all, I have this error during execution of a Jenkins job with "Scan for compiler warnings" in "post build action" (two parsers are use : parser1 and parser2) : [WARNINGS] Parsing warnings in files 'output1' with parser parser1 [WARNINGS] Groovy sandbox rejected the parsing script for par

Connecting software development tools to an e-learning platform

2017-04-24 Thread Jülide Dursun
Hello Jenkins Users, I hope you can help me. I am working on my bachelor thesis right now. Topic is: Connecting software development tools to an e-learning platform. The e-learning platform in this case is Moodle. The software development tool is Jenkins. I have to make following scenario true: