Re: Changed Jenkins URL doesn't reflect?

2016-07-01 Thread Jakov Sosic
On 07/02/2016 01:39 AM, Jakov Sosic wrote: Hi guys. How to properly change "Jenkins URL"? I've changed it in "Configure System" and in nginx, and I've restarted both. But, after jenkins starts, it still redirects me to old "Jenkins URL" I had :-/ Is there a way to make a clear change of thi

Changed Jenkins URL doesn't reflect?

2016-07-01 Thread Jakov Sosic
Hi guys. How to properly change "Jenkins URL"? I've changed it in "Configure System" and in nginx, and I've restarted both. But, after jenkins starts, it still redirects me to old "Jenkins URL" I had :-/ Is there a way to make a clear change of this URL ? -- You received this message be

[pipeline-plugin] [workflow-plugin] Parallelizing Jenkins Pipelines

2016-07-01 Thread Wayne Warren
So I have been experimenting with Jenkins Pipeline Plugin recently. One of the requirements I am evaluating it against is the ability to express complex relationships between the build and test steps of different projects and to parallelize the execution of those steps where possible. To visu

User/groups disappear for project based security?

2016-07-01 Thread RiRL
I am seeing an issue that when I go to the configuration page for a project with Project-based security enabled: after an initial load of the page, the user/group names disappear, and access is lost as a result. I cannot clear these settings or revert the configuration change or make any other c

Where do groovy generated temp files go on a windows slave?

2016-07-01 Thread Jonathan Hodgson
I have a diff in a build string parameter. To apply it to the repository I need to write it to a file, which is then accessed as part of a shell/batch script. On the master (running linux) this works fine def checkOutWithPatch(url, credentials, destination, revision, diff) { checkout([$cl

Re: Git branch names of the form "foo/bar" ares escaped to "foo%2Fbar"

2016-07-01 Thread Valentin Churavy
Thanks for the hint On Friday, 1 July 2016 17:20:43 UTC+9, Philipp Meier wrote: > > This issue is described here > https://issues.jenkins-ci.org/browse/JENKINS-30744 > > As long this ugly bug is not fixed, I'll use the workaround of Joost van > der Griendt posted in the ticket comments. > > On

Jenkins Github plugin: how to make job to be triggered only on pushes to master branch?

2016-07-01 Thread Stanislav Pankevich
Hello, I have asked this question on SO but am not sure if it will be answered soon: http://stackoverflow.com/questions/38149468/jenkins-github-plugin-how-to-make-job-to-be-triggered-only-on-pushes-to-master. Here is quote: I am configuring Jenkins job which does a release of my app's build

Re: Multibranch Pipeline / Git question -- Use same information as used to retrieve Jenkinsfile

2016-07-01 Thread KP
Great. Thank you and Philipp for your fast and helpful replies. On Friday, July 1, 2016 at 1:16:48 PM UTC-4, Antonio Muñiz wrote: > > > On Fri, Jul 1, 2016 at 5:08 PM, KP > > wrote: > >> Or extend "checkout scm" so that I can use a subdirectory? > > > Try this: > > dir('a_subdirectoty') { > c

Re: Multibranch Pipeline / Git question -- Use same information as used to retrieve Jenkinsfile

2016-07-01 Thread Antonio Muñiz
On Fri, Jul 1, 2016 at 5:08 PM, KP wrote: > Or extend "checkout scm" so that I can use a subdirectory? Try this: dir('a_subdirectoty') { checkout scm } -- Antonio Muñiz Software Engineer CloudBees, Inc. -- You received this message because you are subscribed to the Google Groups "Jen

Re: Multibranch Pipeline / Git question -- Use same information as used to retrieve Jenkinsfile

2016-07-01 Thread Philipp Meier
You can get the values from the global SCM variable i.e.: checkout([ $class : 'GitSCM', branches : [[$class: 'BranchSpec', name: git_reference]], doGenerateSubmoduleConfigurations: scm.doGenerateSubmoduleConfigurations,

Beta of Plaiiin Jenkins Status released - The coolest monitoring app for Jenkins so far ;-)

2016-07-01 Thread schwaller
Hi Jenkins User In the last few weeks I worked on a Jenkins Status App than can be put on a TV in the office to see the responsible build killer at a glance. It took much longer than I thought at first and it's still a beta but i hope you enjoy it. It's FREE so please understand that i don't pa

Principle Build and Release Engineer

2016-07-01 Thread Chad Gross
I am looking for a world-class Principal Build and Release Engineer to lead and transform the continuous integration and continuous delivery efforts at our Google-owned edTech company: Renaissance Learning. This is a highly visible, very senior position reporting directly to me (VP of DevOps) an

Re: Multibranch Pipeline / Git question -- Use same information as used to retrieve Jenkinsfile

2016-07-01 Thread KP
I am also interested in this, but for a slightly different reason. I want to checkout into a sub-directory using git. I know that I can do that by using syntax like: checkout([$class: 'GitSCM', branches: [[name: '**']], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'Relative

Re: Dump current JENKINS_OPTS?

2016-07-01 Thread Daniel Beck
/systemInfo should contain it. > On 01.07.2016, at 17:03, James Green wrote: > > Can't immediately see a way of doing this. I've set a new `sessionTimeout` > and I'd like to confirm that Jenkins is honouring it. > > Without wishing to wait a lengthy period, is there a web console page to dump

Dump current JENKINS_OPTS?

2016-07-01 Thread James Green
Can't immediately see a way of doing this. I've set a new `sessionTimeout` and I'd like to confirm that Jenkins is honouring it. Without wishing to wait a lengthy period, is there a web console page to dump Jenkins' current configuration? Thanks, James -- You received this message because you

Re: String parameter oddness, something I'm not seeing, or a bug?

2016-07-01 Thread Jonathan Hodgson
Thanks, that seems to have worked. Now to get the patch working on slaves as well as the master... On Friday, July 1, 2016 at 1:38:36 PM UTC+1, Jonathan Hodgson wrote: > > Aha!! I had wondered about something along those lines but I was looking > at quotes for the answer and not finding it. > >

Re: Using the logstash Plugin

2016-07-01 Thread Daniel Beck
Tool installation configurations (which is how it's implemented in the Logstash plugin) moved to _Manage Jenkins » Global Tools Configuration_ in Jenkins 2. > On 01.07.2016, at 12:54, Ines Khandelwal wrote: > > I have installed the logstash plugin. However teh options to configure it are > not

Re: String parameter oddness, something I'm not seeing, or a bug?

2016-07-01 Thread Jonathan Hodgson
Aha!! I had wondered about something along those lines but I was looking at quotes for the answer and not finding it. I will try modifiying my submission code accordingly. Thanks On Friday, July 1, 2016 at 1:01:33 PM UTC+1, Daniel Beck wrote: > > > > On 01.07.2016, at 13:35, Jonathan Hodgson

Re: String parameter oddness, something I'm not seeing, or a bug?

2016-07-01 Thread Daniel Beck
> On 01.07.2016, at 13:35, Jonathan Hodgson wrote: > > I can't think of any reason why this should be happening other than a bug, > has anybody else got any input? This is a quirk in the variable resolution in Jenkins: Any variable references in parameter values are expanded. So the line tha

String parameter oddness, something I'm not seeing, or a bug?

2016-07-01 Thread Jonathan Hodgson
Ok, so I have a project that receives a diff (it's a "try before commit" project) as a string parameter (it's a pipeline project, so I can't send it as a file parameter, or at least I couldn't last time I checked, they don't work in pipelne projects). This was all working fine, at least for the

Using the logstash Plugin

2016-07-01 Thread Ines Khandelwal
I have installed the logstash plugin. However teh options to configure it are not shown in the Jenkins->Manage Jenkins->Configure System I have tried reinstall multiple times as well as previous builds but nothing seems to work. -- You received this message because you are subscribed to the Go

Re: Synchronize timestamps in Jenkins output console, between nodes and master

2016-07-01 Thread Thomas Zoratto
Hello, I don't know if there is a better solution to do it but maybe you could specify the desired time zone during the creation of your AWS instance > Le 29 juin 2016 à 12:56, steliosP a écrit : > > I am facing the following problem: > Jenkins slaves are deployed in AWS, in different regions

Re: Git branch names of the form "foo/bar" ares escaped to "foo%2Fbar"

2016-07-01 Thread Philipp Meier
This issue is described here https://issues.jenkins-ci.org/browse/JENKINS-30744 As long this ugly bug is not fixed, I'll use the workaround of Joost van der Griendt posted in the ticket comments. On Thursday, 30 June 2016 23:43:02 UTC+2, Valentin Churavy wrote: > > I am setting up a new Jenkin

Building containers with Docker in Docker and Jenkins

2016-07-01 Thread Renze de Vries
Just wanted to share some of my experiences with building Docker containers using a dockerized Jenkins setup. For people like me who are running simple Jenkins setup on their home hardware this might be interesting to read: https://renzedevries.wordpress.com/2016/06/30/building-containers-with-d

Re: How exactly does stash / unstash work AND how to use the same node in different stages

2016-07-01 Thread 'Björn Pedersen' via Jenkins Users
Hi, Maybe https://groups.google.com/d/msg/jenkinsci-dev/nAZD0-upB68/YwYjqmKgAwAJ can be of help for you? Björn Am Donnerstag, 30. Juni 2016 18:03:19 UTC+2 schrieb Christian Ditscher: > > Hello, > > I was wondering how exactly the stash unstash commands work. When are the > files transferred

Multibranch Pipeline: Jenkins View missing last build information

2016-07-01 Thread Sverre Moe
The Jenkins views has no information about "Last Success", "Last Failure" and "Last Duration" for Multibranch Pipelines. It should propagate the result from the last built branch. I could not find any issues for this, so not sure if there is any work in progress to implement it. https://issues.je

Re: High CPU usage with Gerrit Trigger plugin

2016-07-01 Thread 'Björn Pedersen' via Jenkins Users
Hi, you could check if this is caused by the mina/ssh problems in gerrit: See e.g. https://groups.google.com/forum/#!searchin/repo-discuss/open$20connections/repo-discuss/O1Beo9wRPjc/UziifXyZCAAJ It could be that the plugin just loops on trying to re-open a lost connection. Björn Am Donnerstag

Re: Jenkins plug-in

2016-07-01 Thread 'Björn Pedersen' via Jenkins Users
Hi, Install the plugin-usage plugin. This twill give you the information (at least for plugins that are explicitly configured in jobs. Library plugins are not always detected). Björn Am Freitag, 1. Juli 2016 09:05:18 UTC+2 schrieb Oparlescu Vlad: > > Hello everyone, > > I'm new to Jenkins and

Jenkins plug-in

2016-07-01 Thread Oparlescu Vlad
Hello everyone, I'm new to Jenkins and I want to print only the jobs that are using a specific plug-in.Is there any way to do this Please advice a workaround if it's any ! Thank you -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscr