Re: How to group jobs into project in Jenkins

2016-05-04 Thread Cuong Tran
You can use the folder plugin to group jobs. On Saturday, April 30, 2016 at 7:34:03 PM UTC-7, Tony wrote: > > Hi, > > Does anyone know how to group jobs into project in Jenkins? Also, is there > any plugin to display such projects (which consist of jobs) in Jenkin > Dashboard? > > Thanks! >

Re: general Pipeline help

2016-05-04 Thread Craig Rodrigues
Hi, Thanks for describing your workflow and posting your script. You want to do some non-trivial stuff in your script, but I think it is doable. You mentioned that you are doing this on Windows, so you are correctly invoking 'bat' to run commands. You won't be able to get away from doing that.

Re: git versioning

2016-05-04 Thread Mark Waite
Command line git 2.8.2 is well tested with the git plugin. I use that version (delivered through a Ubuntu PPA) on Ubuntu 14.04 for all my development and testing of the git plugin and git client plugin. Other git versions (like 1.7.1) are also included in the testing, but first compilation and

git versioning

2016-05-04 Thread molnar
Hello, I have run into some issues with the Jenkins git plugin. I ran into the following error. Failed to connect to repository : Command "git config --local credential.username molnar" returned status code 129: stdout: stderr: error: unknown option `local' I understand is is because the

Jenkins pipeline job not triggered sometimes with option "Build after other projects are built"

2016-05-04 Thread ok999
I have a job of the type pipeline. I want this to trigger whenever their is a change in the SCM. Since the option to poll an SCM was not available with the pipeline. There is a job that polls the scm every 5mins. This job is set as the reference and i have enabled the option, "Build after

Re: Jenkins 2.x install for LTS

2016-05-04 Thread Daniel Beck
> On 04.05.2016, at 18:11, greg.rom...@qflow.com wrote: > > What is the suggested path for using Jenkins 2.x for a conservative > organization like ours? We would like to use version 2.1 but don't have the > resources to be installing and potentially troubleshooting a new version > every

Re: general Pipeline help

2016-05-04 Thread Brent Kilgore
sorry, forgot to paste my script in it's current state: node { stage "Setup" git branch: DEVELOPMENT_BRANCH, url: GIT_REPO stage 'Refresh Shared Branch' echo "Refresh ${DEVELOPMENT_BRANCH} from ${UPSTREAM_BRANCH}" def ret = bat "git merge ${UPSTREAM_BRANCH}" echo

general Pipeline help

2016-05-04 Thread Brent Kilgore
I am trying to set up a pipeline job that imitates what we have now in jenkins as a huge complicated mess of batch script steps. I am having issues getting my foot in the door so to speak. I am running newest 2.0 build in windows The first issue is i cant seem to find any good references for

Re: Jenkins 2.x install for LTS

2016-05-04 Thread Stephen Connolly
There will be a 2.x LTS in a couple of weeks... 1.651.3 needs to happen first AIUI On 4 May 2016 at 17:11, wrote: > For Jenkins 1.x we have always gone with the Long-Term Support (LTS) > release. We are not an organization who wants to be on "the latest and > greatest".

Base Clearcase polling for branches

2016-05-04 Thread Kumara guru
Hi All, I need a help in configuring base clearcase. I want to trigger a build when there is change in my branch, but the branch name will be provided as a Build parameter , while building. These are the informations: *version : Jenkins ver. 1.651.1* *Clearcase view type :

Re: 2.0 Pipeline - input step with choice param fails

2016-05-04 Thread Lionel Orellana
Cool. Gracias. On 4 May 2016 at 18:43, Antonio Muñiz wrote: > > On Sun, May 1, 2016 at 4:21 PM, Lionel Orellana > wrote: > >> Any ideas? > > > Filed https://issues.jenkins-ci.org/browse/JENKINS-34590 (there is a > workaround in a comment). > > > -- >

How Jenkins could pull AWS SQS and trigger jobs

2016-05-04 Thread Mladen Marev
Hello, Is there easy way to trigger Jenkins job/s when new message arrive in Amazon SQS. The use case, I am trying to cover is as follows: Some other Amazon services will post messages in dedicated SQS queue, containing some specific information. I would like as soon as possible, the on

Re: broke on 2.0 upgrade

2016-05-04 Thread Daniel Beck
> On 04.05.2016, at 12:48, Paulo Moreira wrote: > > +1 fixed thanks :) > > cd /var/lib/jenkins/plugins > ls -la | grep disable > > if files rm > > Did the trick! FWIW we included a change in 2.1 that results in new plugin installations no longer causing this problem:

Re: broke on 2.0 upgrade

2016-05-04 Thread Paulo Moreira
+1 fixed thanks :) cd /var/lib/jenkins/plugins ls -la | grep disable if files rm Did the trick! terça-feira, 26 de Abril de 2016 às 20:14:15 UTC+1, Josh Santangelo escreveu: > > > > On Apr 26, 2016, at 12:09 PM, Daniel Beck > wrote: > > > > > >> On 26.04.2016, at

Re: email-ext as build step

2016-05-04 Thread 'Niksan' via Jenkins Users
Cheers, although I'm not using pipeline and I guess this can;t be pulled out to just be put in a groovy script build step? On Friday, April 29, 2016 at 3:53:55 AM UTC+1, Craig Rodrigues wrote: > > Niksan, > > Take a look at this Pipeline script I wrote: > > >

Re: 2.0 Pipeline - input step with choice param fails

2016-05-04 Thread Antonio Muñiz
On Sun, May 1, 2016 at 4:21 PM, Lionel Orellana wrote: > Any ideas? Filed https://issues.jenkins-ci.org/browse/JENKINS-34590 (there is a workaround in a comment). -- Antonio Muñiz Software Engineer CloudBees, Inc. -- You received this message because you are subscribed

Re: support text coloring in jenkins console output

2016-05-04 Thread Pooja Shah
This answer may not be relevant now, but to save newbie's time, its https://wiki.jenkins-ci.org/display/JENKINS/AnsiColor+Plugin what does it exactly. But user's code should have these color codes which might not be acceptable for few then should for

Parallel from build flow plugin never ends

2016-05-04 Thread alexmkv
We have one job that executes several other using build flow jenkins plugin. Main points of used flow DSL: def parallelJobs = []; jobParams.each { ... parallelJobs.add({ res = build(jobName , PARAM_NAME: param_value ... another_params ... ) }) }