recommendations for auditing changes to Jenkins Job configurations

2014-05-19 Thread ziv
Hi Does anyone have recommendations/best practices for auditing changes to Jenkins Job configurations. Who changed the configuration, when and what were the changes. Thanks Ziv -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe

Re: recommendations for auditing changes to Jenkins Job configurations

2014-05-19 Thread Daniel Beck
Job Config History plugin and Audit Trail plugin come to mind. On 19.05.2014, at 08:36, ziv z...@innovid.com wrote: Hi Does anyone have recommendations/best practices for auditing changes to Jenkins Job configurations. Who changed the configuration, when and what were the changes.

Re: Missing git plugin

2014-05-19 Thread Richard Bywater
Note that the list isn't completely alphabetical so it's probably further down the list. Richard On Monday, May 19, 2014, Aihua Li chief.ai...@gmail.com wrote: Hi, Mark, Thanks for replying. So I followed your steps above, and on step 3, there is no row GIT plugin. The close name is called

Re: Add version and build number to Artifactory directory in repository

2014-05-19 Thread Maciej Jaros
M M (2014-05-19 00:42): Hi, I wonder if someone can help me please. I am trying to add the version and build number to the directory in Artifactory. I am using Jenkins and I can configure using the Artifactory Configuration where I want my artifacts to go. The Published Artifacts entry

Can't download Subversion plugin 2.4

2014-05-19 Thread David Aldrich
Hi I am getting an exception when I try to download Subversion plugin 2.4. Is this a server failure? Best regards David java.io.IOException: Failed to download from http://updates.jenkins-ci.org/download/plugins/subversion/2.4/subversion.hpi at

RE: Can't download Subversion plugin 2.4

2014-05-19 Thread Matthew.Webber
I'm having trouble getting a reliable connection to the Jenkins web site, so I suspect there is a problem at that end. This is Monday morning UK time (GMT+1). From: David Aldrich [mailto:david.aldr...@emea.nec.com] Sent: 19 May 2014 08:58 To: jenkinsci-users@googlegroups.com Subject: Can't

Jenkins Database

2014-05-19 Thread Hajarita Bm
Heyyy, How can i check if my database already exists in jenkins?!! Best regards -- 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

Re: Jenkins Database

2014-05-19 Thread Richard Bywater
You might need to provide a bit of background in order for the group to assist - for starters, which database are you referring to? Richard. On Mon, May 19, 2014 at 8:25 PM, Hajarita Bm hajarbenma...@gmail.comwrote: Heyyy, How can i check if my database already exists in jenkins?!! Best

Re: Jenkins Database

2014-05-19 Thread Hajarita Bm
Hey, thank for your answer Richard I use the phing script to copy mysql database from a directory to another so how can I configure jenkins to ensure the database exists when the work is done for not crush files. Best regards, -- You received this message because you are subscribed to the

Re: Jenkins Database

2014-05-19 Thread Hajarita Bm
I really need your help can anyone help me please? -- 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. For more

Re: Dynamic Parameter question

2014-05-19 Thread alok kumar
Hi Loannis, Thanks for guiding me. Can you please provide me an example groovy script meant to do this kind of work? I am a little lost as I can even see any help icon for the way the script should be written using the other job parameters. Thanks, Alok On Friday, 9 May 2014 23:08:31 UTC+5:30,

Re: junit marks build as failed

2014-05-19 Thread Mark Waite
You could write a unit test result file with a single test that represents the success or failure of your build. That dummy file would satisfy the requirement for a unit test result without requiring special case logic in the job definition. Mark Waite On May 18, 2014 10:10 PM, Irfan Sayed

Re: junit marks build as failed

2014-05-19 Thread Irfan Sayed
thanks. but i don't have any single unit test OR i don't want to fire any unit tests for specific build instance. further, dummy file will again have some unit test result which will in against of real test cases so this might be confusing is there any other option ? regards On Mon, May 19,

Re: Missing git plugin

2014-05-19 Thread Mark Waite
Sorry, my steps weren't clear enough. It appears you used the browser's built-in search (since I said search - my mistake). It is simpler if you use the Filter field that is in the top right hand corner of the page. That will reduce the visible rows to only those which match the filter

Re: junit marks build as failed

2014-05-19 Thread Mark Waite
You could search for a plugin which allows post-build actions to be conditional. I'm not aware of such a plugin, but there may be one. You could modify the Jenkins code and maintain it as your own fork. Both those options sound more complicated than assuring that your build always writes at

Re: Jenkins Database

2014-05-19 Thread Hajarita Bm
thank u for your answer Nux i found this link,it is the same thing I'm looking for but I do not know how it works. https://github.com/codevise/jenkins-mysql-job-databases-plugin Best regards, HAJAR -- You received this message because you are subscribed to the Google Groups Jenkins Users

Is there a text/json/parsable form of http://mirrors.jenkins-ci.org/status.html

2014-05-19 Thread Kevin
I'm behind a proxied firewall and want to allow all the mirrors via scripting without trolling through HTML. Is the mirror list somewhere on github perhaps? Thanks -- You received this message because you are subscribed to the Google Groups Jenkins Users group. To unsubscribe from this group

commands to be executed onxvnc using jenkins

2014-05-19 Thread Ruchira Khandelwal
Hi, In my Jenkins build I have configured xvnc.My purpose is to launch a xvnc application when I run jenkins build and then want some commands to be executed on the newly opened xvnc. But when I run the Jenkins's build I could see that5 though the xvnc session got created but whatever

Re: commands to be executed onxvnc using jenkins

2014-05-19 Thread Mark Waite
I have preferred the Xvnc plugin as a way to start the VNC server for a job, then stop it at the end of the job. That removes the need to call xvnc from your build script. The build script is started with a value already defined for DISPLAY, and programs started from that build script can use

Re: commands to be executed onxvnc using jenkins

2014-05-19 Thread Ruchira Khandelwal
Thanks Mark. Though the xvnc gets launched but why the commands did not execute on this console on its own even though we have given the commands in execute shell.We already had xvnc configured in the way you mentioned.But somehow commnds on its console are not getting excecuted on this new vnc

Re: commands to be executed onxvnc using jenkins

2014-05-19 Thread Mark Waite
If you're already using the Xvnc plugin, then you don't need to set the DISPLAY environment variable in your script. It should already be set by the plugin as part of the environment when your script executes. Setting it again will risk that you'll assign the wrong value and your program under

Re: junit marks build as failed

2014-05-19 Thread Mike Bayliss
You could write a dummy file that just describes each test as skipped. That way your dummy results are actually accurate and won't mislead when compared againt other runs. Mike On Mon, May 19, 2014 at 1:18 PM, Mark Waite mark.earl.wa...@gmail.comwrote: You could search for a plugin which

Re: AccuRev plugin not finding executable

2014-05-19 Thread Sapientlife
Hi Jason, Here's the output of the accurev info command Thanks, Brian On Friday, May 16, 2014 1:35:40 PM UTC-4, Sapientlife wrote: Hi, Has anyone had this error when trying to use the accurev plug-in? Al my builds are run on the master jenkins server account. fyi I commented out the

Re: commands to be executed onxvnc using jenkins

2014-05-19 Thread Ruchira Khandelwal
Hi Mark, Thanks a lot for your prompt response.After removing the display command,still the commands do not get executed on xvnc but instead on default jenkin's console. why are not the commands getting routed to xvnc windows.Please help consolew output: Starting xvnc [CGO] $ vncserver

Jenkins+phing

2014-05-19 Thread Hajarita Bm
Hey Is there someone who works with jenkins and phing?!! Best regards, HAJAR -- 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

Re: Jenkins user shows with 'Red Stop Sign' in security configuration

2014-05-19 Thread Ioannis Moutsatsos
Thanks Steve; Although I'm running Jenkins on Windows and I'm not using LDAP for authentication, I think your observation was in fact *correct!* After adding the user name in *all lower case in the security matrix and asking the user to re-register with an lower case username* the 'Red Stop

Re: Jenkins+phing

2014-05-19 Thread jpd4nt
Yes. but stopped using on larger projects due to memory usage of phing (well phing + other php tools). -- 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

Ability to read job config without changing it (re: matrix security)

2014-05-19 Thread Steve K
Hello, How can I grant a user the ability to see a job configuration without also granting the ability to modify that configuration? This question has come up in the past and I'd just like to find out what the current status is. Apparently there is a plugin that will help, but then I read that

(email-ext plugin) e-mail notification for new static analysis issues

2014-05-19 Thread Ryan Shoemaker
Hi, I'm trying to figure out how to configure the email-ext plugin to generate an e-mail whenever someone introduces a new static analysis issue (identified by findbugs, pmd, and checkstyle plugins). I found a mention of this on the static analysis plugin

Re: (email-ext plugin) e-mail notification for new static analysis issues

2014-05-19 Thread Slide
If you click on the list of triggers to add, there should be a Script Trigger, add that and then define the groovy in the configuration for that trigger. Thanks, slide On Mon, May 19, 2014 at 9:12 AM, Ryan Shoemaker ryan.shoema...@gmail.comwrote: Hi, I'm trying to figure out how to

No signature block found in downloadable hudson.plugins.groovy.GroovyInstaller

2014-05-19 Thread Matthew.Webber
When I attempt to update the list of available plugins using the Web UI, it hangs. I see this in the log: May 19, 2014 4:02:18 PM hudson.model.DownloadService$Downloadable doPostBack SEVERE: div class=errorimg src='/static/4ef349f5/images/none.gif' height=16 width=1No signature block found in

Re: AccuRev plugin not finding executable

2014-05-19 Thread Sapientlife
Hi Jason, [jenkins@releng01p utd_jbr-test]$ accurev info Shell: /bin/bash Principal: build Host: releng01p.utd.com Domain: (none) Server name:accurev01p Port: 5050 DB Encoding:Unicode ACCUREV_BIN:/data/opt/AccuRev/bin Client time:2014/05/16

Re: AccuRev plugin not finding executable

2014-05-19 Thread Sapientlife
[jenkins@releng01p utd_jbr-test]$ accurev info Shell: /bin/bash Principal: build Host: releng01p.utd.com Domain: (none) Server name:accurev01p Port: 5050 DB Encoding:Unicode ACCUREV_BIN:/data/opt/AccuRev/bin Client time:

Re: Ability to read job config without changing it (re: matrix security)

2014-05-19 Thread Daniel Beck
The plugin is Extended Read Permission Plugin: https://wiki.jenkins-ci.org/display/JENKINS/Extended+Read+Permission+Plugin It does basically what passing -Dhudson.security.ExtendedReadPermission=true to java would do, documented here:

Re: Is there a text/json/parsable form of http://mirrors.jenkins-ci.org/status.html

2014-05-19 Thread Daniel Beck
http://mirrors.jenkins-ci.org/status.html On 19.05.2014, at 13:34, Kevin kbrow...@gmail.com wrote: I'm behind a proxied firewall and want to allow all the mirrors via scripting without trolling through HTML. Is the mirror list somewhere on github perhaps? Thanks -- You received this

Re: Mirror instability. many 503 responses

2014-05-19 Thread Richard Bywater
Agreed - I think this might be the cause of some of the Puppet failures we are seeing which is rather annoying as the same build won't work from one run to the next. Richard On Tuesday, May 20, 2014, Jim Gumbley j.gumb...@gmail.com wrote: Seeing identical issues, very disruptive when creating

Re: commands to be executed onxvnc using jenkins

2014-05-19 Thread Mark Waite
You could try echo $DISPLAY immediately prior to the start of your command to see how its environment is configured. You could try running some other program (like xterm or xclock) to see if it behaves the same as your program. Mark Waite On Mon, May 19, 2014 at 7:46 AM, Ruchira Khandelwal

Issue in jenkins version 1.552

2014-05-19 Thread shyamendra pratap
Hi, I am using Jenkins 1.552 version and I call Jenkins build job using CLI. I am invoking a build job (maven build job) by the following command. java -jar $HOME_DIR/jenkins-cli/jenkins-cli.jar -s http://Server:Port/jenkins -i ~/.ssh/id_rsa get-job Build_Job_TestEQUAL where

Re: git timeout

2014-05-19 Thread Chanda Unmack
True - git clone has always been slow on windows, but that doesn't explain why when I remove the credentials the timeout is honored. On Sat, May 17, 2014 at 12:43 PM, Richard Bywater rich...@byh2o.com wrote: I believe it's a known issue when using Git on windows that SSH is really really slow

Online training for Jenkins CI

2014-05-19 Thread Chiranjeevi Chakka
Is there a preferred online training for jenkins that any one recommend? -- 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

Re: junit marks build as failed

2014-05-19 Thread Irfan Sayed
thanks all will write some dummy test cases. regards irfan On Mon, May 19, 2014 at 6:24 PM, Mike Bayliss mike.bayl...@gmail.comwrote: You could write a dummy file that just describes each test as skipped. That way your dummy results are actually accurate and won't mislead when compared

Running UI tests on Windows SSH slave

2014-05-19 Thread Mani Azizzadeh
Hi, I have a windows slave where I want to run automated UI tests. Because of organizational requirements I need to run it as an SSH slave (cannot use jnlp). The problem is that cygwin ssh server runs as a service and therefore runs the UI tests in another session/desktop. This causes problems