Jenkins User Conference 2015 - Washington DC & London

2015-05-06 Thread Alyssa Tong
Hi All, If you're on the East Coast or London area, pls join Kohsuke Kawaguchi and many other prominent Jenkins community members at the Jenkins User Conference in Washington DC and London in June. Agendas for both cities are available and seatings are

Using Groovy 2.x to run scripts in Jenkins' context

2015-05-06 Thread Marcin Zajączkowski
Hi, I heavily use job-dsl-plugins to provision and manage jobs in Jenkins and it would be useful to be able to use Groovy 2.x features (like traits or static compilation) to write that code. Jenkins has embedded Groovy 1.8.9 (which as a line 1.8 is quite old) which is used to run job-dsl-plugin

Re: JENKINS REST API: queue service responds “404 not found”

2015-05-06 Thread Baptiste Mathus
As Vincent said, known issue. Did you click on the link above? I suppose you did, obviously. Reading the changelog: https://jenkins-ci.org/changelog you'll learn that fix has been included in 1.605. Cheers Le 6 mai 2015 11:00 PM, "harperville" a écrit : > Hi, Vincent. I'm confused. I'm running

Re: JENKINS REST API: queue service responds “404 not found”

2015-05-06 Thread harperville
Hi, Vincent. I'm confused. I'm running 1.604 and a script that previously worked fails with a 404 when I'm trying to hit this endpoint. A little help? On Friday, March 20, 2015 at 9:57:18 AM UTC-4, Vincent Latombe wrote: > > Hi, > > this is a known issue, see > https://issues.jenkins-ci.org/

Re: Display a field from every job

2015-05-06 Thread Baptiste Mathus
The simplest way is to use some groovy code. Look for Jenkins groovy on Google and it should get you going. If you want something clean and durable, then you want to go for adding the support for that field in the configuration slicing plugin (which I suppose doesn't support that right now). Chee

Make jenkins checkout using cvs over ssh with given port

2015-05-06 Thread tps800
Hi! trying to checkout a cvs-repository using transport over ssh with port 2022. If I give it on a command line (/bin/sh): { export CVSROOT=anoncvs@:/cvs export CVS_RSH=$HOME/bin/SSH cvs -q get -P src } with { $HOME/bin/SSH }: { ssh -p 2022 -o UserKnownHostsFile=/dev/null -o StrictHostK

RE: Git repository connection times out sometimes

2015-05-06 Thread Dunnigan, Terrence J
Hi, I’m also encountering that very error. It seems to happen at random on various nodes. Building remotely on Goku in workspace C:\Hudson_remote\workspace\code.git > C:\Program Files (x86)\Git\cmd\git.exe rev-parse --is-inside-work-tree # > timeout=120 Fetching changes from the remote Git repo

Re: Git repository connection times out sometimes

2015-05-06 Thread web-deploy
Hi, I have encountered same problem starting last week. My Jenkins master and slaves are running on linux tho. ... ERROR: Timeout after 10 minutes ERROR: Error cloning remote repo 'origin' ERROR: Error cloning remote repo 'origin' Retrying after 10 seconds ... On Wednesday, April 22, 2015 at

Re: [workflow-plugin] Set build description

2015-05-06 Thread Christoph Vogtländer
You can use currentBuild.setDescription("Your Description") Christoph Am 25.03.2015 18:52, schrieb Lóránt Pintér: Hi, Is there a way to set the description of a workflow build from a workflow script? Thanks, Lorant -- You received this message because you are subscribed to the Google Grou

Re: Git repository connection times out sometimes

2015-05-06 Thread web-deploy
Hi, I haven't encountered similar problem starting last week. Our Jenkins master and slaves both run on Linux tho. ... ERROR: Timeout after 10 minutes ERROR: Error cloning remote repo 'origin' ERROR: Error cloning remote repo 'origin' Retrying after 10 seconds ... Anyone has any ideas? On Wedne

Re: Git Publisher: EnvVar in tag name

2015-05-06 Thread Sverre Moe
Anyone has any idea how I can get my build environment variables over to the matrix parent? tirsdag 5. mai 2015 10.59.15 UTC+2 skrev Sverre Moe følgende: > > It seems there is an registered JIRA issue for this problem > https://issues.jenkins-ci.org/browse/JENKINS-15507 > > Its 3 years old, it ha

Can we restrict some job config fields from update operations

2015-05-06 Thread Samith Dassanayake
Hi all, Once we create a job, can we restrict some particular fields, for update using "Fetch/Update config.xml" rest endpointI. For example assume my job config is like below and I want to restrict changes to "*description*" field using rest api <*description*>deploys to cloud instan

App extension crashed the simulator

2015-05-06 Thread irm emc
Hello everyone, We use Jenkins to do automation tests for an iOS Application. This iOS Application contains an App Extension. We install xctool to do the automation tests. But the simulator crashed before any test can start. The crash report shows that the init function of the App Extension ca

Build of Maven module executed twice

2015-05-06 Thread Clifford Sanders
Hi, Last night a build (#468) of one of our Maven projects was started by an user manually by clicking on 'Rebuild Last'. The build was marked as FAILED although the build log says "Finished: UNSTABLE" (two tests failed). While looking at the "Module Builds" view I saw that one of the modules w

[workflow-plugin] Dir step : funny way of removing your whole master .jenkins directory

2015-05-06 Thread Baptiste Mathus
Hi, Recently, someone in our shop had his first tries with the workflow plugin. Some context: he wanted as a first step to ensure a specific directory in the workspace would be removed. Here's an excerpt (warning: don't run it, read below): node('rhel'){ dir('workingdirectory'){ File

Re: Display the result of an Execute Shell

2015-05-06 Thread Peter Marcoen
Thank you Daniel, this was exactly what I was looking for! Op woensdag 6 mei 2015 09:22:41 UTC+2 schreef Daniel Beck: > > These plugins should allow you to search the build log for your tool > output, and use it to set the build description, or (in the case of Groovy > Postbuild) add a separate

Re: Display the result of an Execute Shell

2015-05-06 Thread Daniel Beck
These plugins should allow you to search the build log for your tool output, and use it to set the build description, or (in the case of Groovy Postbuild) add a separate section to the main build page: https://wiki.jenkins-ci.org/display/JENKINS/Description+Setter+Plugin https://wiki.jenkins-ci.