jenkins garils build to tomcat javascript asset link issue

2016-03-18 Thread greenbuds software technologies
Hi, I have build war for grails project from jenkins to tomcat.But when I test app javascript assets are not linking correctly,So bootstrap menus are not working. But I did not faced such type of issue when I build using commanline. Software Versions Which I have used: Grails : 2.4.2 Grai

java.net.SocketTimeoutException: connect timed out

2016-03-18 Thread Janardhan Korada
Hi , I am using the below command java -jar jenkins-cli.jar -noCertificateCheck -s https://jenkins-url.com help I am getting below error Skipping HTTPS certificate checks altogether. Note that this is not secure at all. java.net.SocketTimeoutException: connect timed out at java.net.P

Re: Opening Html files failed

2016-03-18 Thread jerome
I'm running into the same problem under Windows, I try to add the Prolicy and restart the server, but it seem to be ignored. Here's what I did inside the "jenkins.xml" -Xrs -Xmx1024m *-Dhudson.model.DirectoryBrowserSupport.CSP="sandbox allow-scripts; script-src 'self' 'unsafe-inline' 'unsafe-ev

Re: [workflow] Git step to check out a commit instead of a branch

2016-03-18 Thread Baptiste Mathus
Now thinking about it, another solution is to just use the plain git CLI. (Requires git on the path, note) *def theSha = ""* *sh "git checkout $theSha"* *// here you go* 2016-03-18 9:12 GMT+00:00 'Björn Pedersen' via Jenkins Users < jenkinsci-users@googlegroups.com>: > Hi, > > you could in

Re: Best Practices with LTS Updates

2016-03-18 Thread Brian Ray
+1 to what Chris said. Two more cents worth of advice: When I upgrade one of our Jenkins masters (on LTS) I first look at the changelogs to have some idea of the delta-- potential gotchas, new features to evangelize, etc. Aside from critical security releases I typically wait a day or two after

Re: Best Practices with LTS Updates

2016-03-18 Thread Daniel Beck
On 17.03.2016, at 17:01, Brian Ray wrote: > Two more cents worth of advice: When I upgrade one of our Jenkins masters (on > LTS) I first look at the changelogs to have some idea of the delta-- > potential gotchas, new features to evangelize, etc. 1.642.1 was the first release for which we had

Re: Enhancing LocalBranch to support maven release builds

2016-03-18 Thread Mark Waite
It has been merged to the git plugin master branch. Next release will include the capability. On Sat, Mar 12, 2016 at 1:50 PM Michael Giroux wrote: > I posted this topic to the Jenkins Developers group ( > https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!searchin/jenkinsci-d

Re: Equivalent of Throttle Concurrent Builds for Pipeline

2016-03-18 Thread Christopher Orr
On 16/03/16 19:56, Rinaldo DiGiorgio wrote: Hi I want to limit the number of pipeline jobs to some number. Any ideas on how to do that with pipeline. I don't know about doing it at the build level, but you can certainly prevent individual pipeline stages from running in parallel: https:

Re: [workflow-plugin] Parallel JUnitResultArchiver steps result in proper junitResult.xml but wrong build.xml

2016-03-18 Thread Logan Glickfield
Oops. s/parallelNode/node (forgot to clean up 2nd instance in sample code). On Friday, March 18, 2016 at 10:03:30 PM UTC-4, Logan Glickfield wrote: > > I'm having trouble with a pipeline I'm trying to set up. The build is > simultaneously succeeding but having failing tests. > > I have 2 nodes co

Re: Opening Html files failed

2016-03-18 Thread Daniel Beck
On 18.03.2016, at 15:48, jer...@bodycad.com wrote: > I still cannot access the web content and I get the same error as if > allow-scripts is not Reload the page, bypassing cache (Shift-F5 on most Windows browsers AFAIK). It's possible your browser isn't actually looking at the (changed) respon

Re: java.lang.ClassNotFoundException

2016-03-18 Thread Jan S
Hi cardio palma, I'm facing the same issue as described in your first post. I'm working with Matrix Authorization Strategy Plugin 1.3.2 on Jenkins ver. 1.642.2. For me downgrading the plugin to v1.1 does the trick. Cheers Jan On Wednesday, March 16, 2016 at 4:51:05 PM UTC+1, cardio palma wrote

Equivalent of Throttle Concurrent Builds for Pipeline

2016-03-18 Thread Rinaldo DiGiorgio
Hi I want to limit the number of pipeline jobs to some number. Any ideas on how to do that with pipeline. Rinaldo -- 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 e

Re: Label question

2016-03-18 Thread Hector Magnanao
How do I do this step ? " pull request to the plugin with the implementation of the labeling" or "negotiate with the plugin maintainer" I guess I'm asking what is the formal process for requesting enhancements to a plugin in Jenkins. On Wednesday, March 9, 2016 at 2:39:26 PM UTC-6, Mark Wai

Re: Change GitSCM repository from a plugin

2016-03-18 Thread Iñigo Telleria
As far as I've understood JGit is to manage a local or remote repostiry. However, what I need is to modify remote repository address of a job. For example, a job's repository url is http://domain.com/project.git. With the plugin I'm implementing I want to replace that address with another one,

[workflow-plugin] Parallel JUnitResultArchiver steps result in proper junitResult.xml but wrong build.xml

2016-03-18 Thread Logan Glickfield
I'm having trouble with a pipeline I'm trying to set up. The build is simultaneously succeeding but having failing tests. I have 2 nodes configured in parallel that run some python tests and dump the results to xml. I then call the JUnitResultArchiver step in each node. The first node to finish

Re: Label question

2016-03-18 Thread Mark Waite
Refer to the "Beginners Guide to Contributing" ( https://wiki.jenkins-ci.org/display/JENKINS/Beginners+Guide+to+Contributing) for first instructions, then fork your own copy of the Integrity plugin ( https://github.com/jenkinsci/integrity-plugin), make your changes, test them, refine and improve th