Re: Beta availability of github-branch-source plugin

2019-04-04 Thread Rick
Yes, I'll do my best to take some time on this. On Fri, Apr 5, 2019 at 3:58 AM Vivek Pandey wrote: > Rick, > > Thanks. Hope you get chance to give it a try do let us know if there are > any issues. > > On Wed, Apr 3, 2019 at 6:36 PM Rick wrote: > >> Hi Vivek, >> >> Good to see this. And thanks

Re: Beta availability of github-branch-source plugin

2019-04-04 Thread Vivek Pandey
Rick, Thanks. Hope you get chance to give it a try do let us know if there are any issues. On Wed, Apr 3, 2019 at 6:36 PM Rick wrote: > Hi Vivek, > > Good to see this. And thanks for your efforts. > > On Thu, Apr 4, 2019 at 1:44 AM Vivek Pandey > wrote: > >> Hello, >> >> We are emailing you al

Re: Kubernetes plugin in a JobDSL environment

2019-04-04 Thread Carlos Sanchez
You can't use 'container' with freestyle jobs, there's no way to switch containers . IIRC you can set the default container to be different than jnlp On Thu, Apr 4, 2019, 20:34 Sean Walberg wrote: > Hi, > > The kubernetes-plugin has the "container" keyword to run commands inside > the given cont

Jenkins ssh-agent plugin: private key cannot be retrieved

2019-04-04 Thread MAKIUCHI, EDWIN Y
Hi, I am resending this email since the last one seemed to encounter a delivery failure. The private key generated by the ssh-agent plugin cannot be found during the execution of a pipeline job: [ssh-agent] Using credentials svc-jenkins (Private key for svc-jenkins to access repos on bitbucke

Kubernetes plugin in a JobDSL environment

2019-04-04 Thread Sean Walberg
Hi, The kubernetes-plugin has the "container" keyword to run commands inside the given container instead of the default jnlp sidecar. Is there an equivalent in Job DSL? We have everything defined in Job DSL as freestyle jobs and I'm able to point a job to the Kubernetes label and it'll spin up

Re: Parallel job Execution Through blue ocean

2019-04-04 Thread Ivan Fernandez Calvo
I've messed with { :) the following is correct pipeline { agent any stages { stage('parallel'){ parallel { stage('Init') { steps { echo 'NOOP' } } stage('JOB1') { steps { echo 'NOOP' } }

Re: How to refer to the private key generated by sshagent plugin?

2019-04-04 Thread Edwin Makiuchi
Hi ZillaYT, Can you let me know if you found a solution to this issue? Thanks, Edwin On Friday, February 15, 2019 at 11:14:46 AM UTC-8, ZillaYT wrote: > > I want to run a packer build in my Jenkins pipeline to create an AWS AMI. > Packer needs an ssh key to connect to AWS, but we don't store th

Re: Parallel job Execution Through blue ocean

2019-04-04 Thread Ivan Fernandez Calvo
it is incorrect, you have a stages directive inside parallel so you only have one stage filled with serial stages, the following pipeline is correct (if I do not make any pitfall with the {) see https://jenkins.io/doc/book/pipeline/syntax/#parallel pipeline { agent any parallel { stage

Re: How to debug SSHLauncher (due special characters in username)?

2019-04-04 Thread Ivan Fernandez Calvo
so your user is something like ' username', IIRC the UI make a trim of the username so this first whitespace is deleted, I never saw a user that starts with whitespace, it is not a valid identifier El jueves, 4 de abril de 2019, 4:57:57 (UTC+2), Jason Pyeron escribió: > > Red herring. > > There

Re: Excel sheet as a build parameter to Jenkins

2019-04-04 Thread Ivan Fernandez Calvo
I do not think that you can pass an excel file to a build to use it as parameters, but the readCSV step can read CSV files generated with Excel see https://jenkins.io/doc/pipeline/steps/pipeline-utility-steps/#readcsv-read-content-from-a-csv-file-in-the-workspace so you can pass a CSV file and

Re: jenkins build numbers are in odd number 1,3,5 etc

2019-04-04 Thread Mark Waite
No clue from me on which of those plugins might be causing build numbers to be skipped. On Thu, Apr 4, 2019 at 10:16 AM sreeni wrote: > Hi Mark > > thank you your reply. > > The job i was running was a pipeline job. I've huge number of plugins. The > issue is also with 2.164 but the plugins i ha

Re: jenkins build numbers are in odd number 1,3,5 etc

2019-04-04 Thread sreeni
Hi Mark thank you your reply. The job i was running was a pipeline job. I've huge number of plugins. The issue is also with 2.164 but the plugins i have are all latest. Here is my plugin list, Mercurial plugin (mercurial): 2.5 JDK Tool Plugin (jdk-tool): 1.2 jQuery plugin (jquery): 1.12.4-0 Sc

Accessing active choice reference parameter in jenkinsfile

2019-04-04 Thread Faad Sayaou
Hello, This might be simple but I having difficulties accessing Active choice reference parameter in my jenkinsfile. It is simple using “active choices reactive parameter” by doing ${params.myvalue} but this doesn’t work when I use it with “active choices reactive reference parameter”. Any idea

Re: jenkins build numbers are in odd number 1,3,5 etc

2019-04-04 Thread Mark Waite
I installed Jenkins 2.170, created a Freestyle job, and ran the job multiple times. It used sequential build numbers as I expected. Builds 1, 2, 3, 4, 5, I would be surprised if that were related to Jenkins 2.170. If you can duplicate the problem, please submit a bug report so that it can

jenkins build numbers are in odd number 1,3,5 etc

2019-04-04 Thread sreeni
Hi Team, I've installed the latest jenkins version 2.170, noticed that the when running a job, the build numbers are in odd number like 1,3,5 etc. I've also noticed that the builds are getting delete automatically. I ensured that the job is not configured to delete the old builds. I've anothe

Re: unable to update plugin branch-api to 2.3.0

2019-04-04 Thread Mark Waite
Branch API 2.3.0 was just released today to the Jenkins Artifactory. The replication process for a new release can take up to 24 hours to copy files to correct locations. On Thu, Apr 4, 2019 at 5:43 AM Jason Pyeron wrote: > When updating we get a 404 for > http://updates.jenkins-ci.org/download

Excel sheet as a build parameter to Jenkins

2019-04-04 Thread chenna keshav
Hi Guys, I would like to know that is there any way that we could pass Excel sheet as a build parameter to Jenkins standalone project.. Thanks, Keshav -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop re

unable to update plugin branch-api to 2.3.0

2019-04-04 Thread Jason Pyeron
When updating we get a 404 for http://updates.jenkins-ci.org/download/plugins/branch-api/2.3.0/branch-api.hpi http://archives.jenkins-ci.org/plugins/branch-api/ does not have a 2.3.0 directory. -Jason Name Branch API This plugin provides an API for multiple branch based proj

Parallel job Execution Through blue ocean

2019-04-04 Thread pbasanta2002
Hi All, Through Blue Ocean Plugin created a pipeline job and want to execute the Jobs inside the "Jenkinsfile" in parallel . Need help on this ..here is the code which is executing sequentally pipeline { agent any parallel { stages { stage('Init') { steps { e

Re: SSH Slave crashing immediately after start

2019-04-04 Thread yoyulian2013
Thank you too :) -- 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 jenkinsci-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https:/

Re: SSH Slave crashing immediately after start

2019-04-04 Thread kuisathaverat
I will add it to the troubleshooting guide for future users, thx for sharing El jue., 4 abr. 2019 a las 11:49, escribió: > I fixed this problem through disable: "Manage Jenkins" > "Configure Global > Security", and check "Enable Agent → Master Access Control" (as it's said > in Jenkin documentat

Re: SSH Slave crashing immediately after start

2019-04-04 Thread yoyulian2013
I fixed this problem through disable: "Manage Jenkins" > "Configure Global Security", and check "Enable Agent → Master Access Control" (as it's said in Jenkin documentation) https://wiki.jenkins.io/display/JENKINS/Slave+To+Master+Access+Control "On the other hand, if all your agents are trusted

Re: Publisher 'Publish JUnit test result report' failed: None of the test reports contained any result

2019-04-04 Thread yash sharma
Thanks Ullrich, the issue has resolved post changing to correct configuration. On Monday, April 1, 2019 at 8:52:52 PM UTC+5:30, yash sharma wrote: > > Hi All, > > In my Jenkins I am doing a post build action which will display Junit test > result report. PFB the snip for the configuration of Jun

Re: configuring multibranchPipelineJob with JobDSL plugin

2019-04-04 Thread j . knurek
I've cross posted in the https://groups.google.com/forum/#!forum/job-dsl-plugin email list, as it seems like a better place for this discussion *(sorry, didn't know it existed beforehand)* On Wednesday, 3 April 2019 17:38:19 UTC+2, j.k...@travelaudience.com wrote: > > I'm getting lost in the m