Autofill problem with ActiveDirectory plugin

2017-03-24 Thread tarocaravan
I'm experiencing the same issue that was supposed to be resolved by https://issues.jenkins-ci.org/browse/JENKINS-29280 Our environment is Jenkins 2.32.3 on CentOS ActiveDirectory plugin 2.3 Chrome browser ver 56.0.2924.87 The workaround is to manually edit the username in config.xml and resta

Re: Parallel in Declarative Pipeline

2017-02-15 Thread tarocaravan
What's declarative syntax? On Wednesday, February 15, 2017 at 11:48:22 AM UTC-8, pbeatty wrote: > > Is "parallel" valid to use in declarative Jenkinfile syntax or is it only > availabl Scripting syntax? > > Pat > -- You received this message because you are subscribed to the Google Groups "Jen

Reset build ID

2017-02-15 Thread tarocaravan
Is it possible to reset the build ID? I believe there's a plugin to increase the build ID, but not to reset it to a lower number. It might be a useful feature to be reset it when starting a new release of a product. -- You received this message because you are subscribed to the Google Groups

Re: Any pointers on docs for using Jenkins to control remote jobs on various machines, non-java.

2017-02-01 Thread tarocaravan
Pipelines really help in coordinating multiple tasks to be run on multiple hosts, sequentially and even concurrently. Have you considered this? The old Jenkins way of define multijobs would be cumbersome so I suggest looking into pipelines. Another option is something like ansible, though in pr

Re: Jenkins queuing multiple jobs of same type from SVN post commit hooks, what is expected behaviour?

2016-12-14 Thread tarocaravan
>From my experience, having multiple pipeline jobs polling for changes causes confusion from the end-user. It seems better to have one "master" job that polls and runs all the other builds. Also it seems Jenkins jobs (including pipeilnes) are quite happy to build concurrently, but I don't know

Re: Jenkins queuing multiple jobs of same type from SVN post commit hooks, what is expected behaviour?

2016-12-14 Thread tarocaravan
Maybe you can configure the 'quiet period'? The default is set in the configuration screen, but you can also set it per job configuration. On Tuesday, December 13, 2016 at 9:48:46 PM UTC-8, Christoffer Holmstedt wrote: > > Hi > I'm running a Jenkins server, latest 2.19 LTS release with a few pip

Re: using remote api to get the build status upon completion

2016-12-14 Thread tarocaravan
I find that using the jenkins-cli was the best option to give me the status. https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+CLI On Wednesday, December 14, 2016 at 2:10:25 PM UTC-8, Katta Vijay wrote: > > I was trying to implement jenkins remote api to initiate build and return > the build

pipeline scm checkout is happening on master node as well as slave node

2016-12-14 Thread tarocaravan
I configured my Jenkins pipeline job to read my pipeline script from SCM. In my pipeline I do an scm checkout on a slave node. As a result, I have code checked out both on the master node and the slave node, and whenever the Jenkins job is run, it actually reads the pipeline script on the master

Attachments in pipeline notiufication

2016-12-12 Thread tarocaravan
Is it possible to attach files to notifications sent from a pipeline? I'm interested in using slack or hipchat as documented at https://jenkins.io/blog/2016/07/18/pipline-notifications. I like notifications, but I'm trying to think of a way to let users know about many aspects (artifacts) of ou

Re: Polling both svn and git from pipeline

2016-12-12 Thread tarocaravan
Hi, Eventually I ended up building periodically and checking for SCM changee manually in each repository manually. It took some work, but I didn't want to define multiple jobs just for polling. Taro On Tuesday, October 18, 2016 at 2:44:22 PM UTC-7, Rachel Moreno wrote: > > Hi, > > Sorry, it's

Duplicate commits listed in pipeline

2016-11-16 Thread tarocaravan
Frequently my pipeline build lists duplicate commits in the "Stage View". I just select my job (which is a pipeline) and look at the jobs listed in "Stage View". When I hover over the dark gray box that lists all the commits that went into the build often see duplicate revision numbers. I use

Re: How to trigger jenkins job based on result of other job

2016-11-10 Thread tarocaravan
Perhaps the following snippet is something that you are looking for: node { stage('Build') { build job: 'test-a', propagate: true build job: 'test-b', propagate: true } } By default propagate is set to true, so this is just to illustrate that you can ignore errors and

Exposing maven integration test phase to pipeline

2016-11-09 Thread tarocaravan
I have a pipeline which does a maven build. During the integration test phase I invoke another Jenkins job. Is there a way to expose parts of the build process while I'm inside a Maven build? // Jenkinsfile node { stage(‘Compile’) { sh ‘mvn clean install’ } } // pom.xml …

Polling both svn and git from pipeline

2016-10-11 Thread tarocaravan
Is it possible to poll for changes from both svn and git repositories from within a pipeline job? In Jenkins, pipeline scm configuration is tied to a particular scm type (due to a radio button), but I would like to poll both svn and git at the same time. As a result of the poll detecting an scm

Pipeline stage view display commits twice

2016-09-29 Thread tarocaravan
In my pipeline stage view, I aways see two commits even though I have only committed once. I think the problem is because: 1) It is a scheduled job 2) The pipeline itself checks out the code Ideally the schedule would be in the pipeline, but I don't think that's possible. I am using pipeline

pipeline scheduling displays duplicate changes

2016-09-12 Thread tarocaravan
When I inspect my Jenkins pipeline job, I always see duplicate entries in the Changes view. It may be happening because: i) I have polling enabled, so that the job kicks off if there are any checkins with a time period ii) The pipeline job checks out the code on a build node and does a build Qu