Re: Jenkins Perforce workspace question

2015-07-21 Thread Martin
Hi, Iata: Thanks for your detailed info. But I still have some questions. To keep it simpler, I did the following: I created a super simple test case. It would be great if you can point out where I may be wrong. I just want to have a simple test of using P4 Jenkins plugin. My steps are belo

Re: Jenkins behind SSL, my case not going through

2015-07-21 Thread Snd Lt
Nevermind. SELinux had been blocking the communication. Used "setsebool" On Tuesday, July 21, 2015 at 6:37:21 AM UTC-7, Snd Lt wrote: > > Thanks for your time. > I'm still learning up on Apache and Jenkins. > > I've been struggling for days with this. > > Would you mind briefly narrating which sh

Re: Jenkins P4 (Perforce) Plugin exposed variables

2015-07-21 Thread BeckyY
Thank you, Daniel!Yes, it was as simple as that! P4_CHANGELIST is an environment variable containing the latest changelist for the path provided. On Tuesday, July 21, 2015 at 3:49:38 PM UTC-7, BeckyY wrote: > > Question is about the P4 plugin by Perforce, not the Perforce plugin by a > t

JUC East and EU - slides/videos available

2015-07-21 Thread Alyssa Tong
Hi Everyone, If you missed JUC East and or JUC Europe - videos and slides from these conferences are now available HERE (JUC East) and HERE (JUC EU). The agenda for JUC West (Sept 2-3, 2015) i

Re: Jenkins P4 (Perforce) Plugin exposed variables

2015-07-21 Thread Daniel Beck
Probably easiest to find out what environment variables are defined with a shell or batch build step that executed 'env' or 'set' respectively. On 22.07.2015, at 00:49, BeckyY wrote: > Question is about the P4 plugin by Perforce, not the Perforce plugin by a > third party. > I didn't see in th

Jenkins P4 (Perforce) Plugin exposed variables

2015-07-21 Thread BeckyY
Question is about the P4 plugin by Perforce, not the Perforce plugin by a third party. I didn't see in the documentation any info about exposed variables. In particular, I need to know the changelist # that the plugin selects to build against. I created a simple project in Jenkins, configure

Approve workflow script from Job DSL plugin

2015-07-21 Thread David Resnick
I have a workflow script that I set in the workflow job Groovy CPS DSL textbox via Job DSL. The problem is that though security on the server is set to "logged in users can do anything", apparently the script is not set as "Jenkins administrator". How can I have the workflow job script updated

custom global parameterized reporting?

2015-07-21 Thread David Smith
Hi, Some backstory/details: 1. I use Jenkins not for builds, but for automation jobs (robot framework) 2. I have a separate jenkins job for each test bed, even if they are each capable of running the same tests 3. Each jenkins job is parameterized; those parameters include which

Re: Jenkins Job spawning a thread that creates an ever-growing log file

2015-07-21 Thread Jeff Dickerson
After a lot of investigation, I now have a way to reliably reproduce this error, and can avoid it. The issue occurs when Jenkins tries to abort the job during JBehave testing. It originally occurred when someone manually aborted a job, but became consistent when I enabled a Jenkins plugin that

Log Parser Plugin

2015-07-21 Thread vijayram
Hi, I installed LogParser Plugin into my Jenkins, I do see it in the installed list of plugins; I restarted jenkins instance and tried to see if the plugin is loaded in /var/log/jenkins/jenkins.log file... but I don't see it loaded anything I am missing here... anyone used this plugin..

Re: Forcing another job to run immediately on same node

2015-07-21 Thread Eric Pyle
One way to do this is using the Priority Sorter Plugin, and give jobB a high priority. On 7/20/2015 10:38 AM, Porter Bassett wrote: I am trying to break up a job into two smaller jobs, which I'll call jobA and jobB. I want jobB to run *immediately* after jobA, and on the same node, just like

Re: Re: Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread nicolas de loof
yes, by intention, as the real world CD scenario I've considered aren't static and can involve various steps depending on runtime context start a new pipeline is just about re-trigger the initial step (which I expect to be a git push) re-run a build could make sense, but then you can just enable r

Aw: Re: Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread Christoph Kutzinski
Am I right when saying the the buildgraphview-plugin is a king of 'after the fact' view of a pipeline run? I.e. I can see the results of a pipeline afterwards, but I can not actively control a pipeline (lie in the Build Pipeline pluing): - starting a new pipeline run - re-running a build - tri

Re: Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread nicolas de loof
build graph view do rely on upstreamCause so should handle most relations between builds and for the others (including build-flow) do offer an extension point to discover other relations 2015-07-21 16:44 GMT+02:00 Christoph Kutzinski : > Thanks! > I didn't know about > https://wiki.jenkins-ci.org

Aw: Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread Christoph Kutzinski
Thanks! I didn't know about https://wiki.jenkins-ci.org/display/JENKINS/Build+Graph+View+Plugin   Can I also define manual triggered steps in a setup of the Build-Flow plugin and the build-graphview-plugin like you can do with the build pipeline plugin?   Gesendet: Dienstag, 21. Juli 2015 um

Re: Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread nicolas de loof
oh yes indeed, oss version only has a simplified step vizualisation 2015-07-21 16:42 GMT+02:00 Christoph Kutzinski : > Yes, > but it doesn't have any visualisation, either (unless I use Jenkins > Enterprise), has it? > > *Gesendet:* Dienstag, 21. Juli 2015 um 14:37 Uhr > *Von:* "nicolas de loof"

Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread nicolas de loof
build flow did introduce buildgraphview-plugin for this exact use case build pipeline only can rendre static and mostly sequential pipelines 2015-07-21 16:19 GMT+02:00 Christoph Kutzinski : > Hi, > > I'm trying to set up a CD pipeline with Jenkins where I can > > I) concisely define the relation

Aw: Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread Christoph Kutzinski
Yes, but it doesn't have any visualisation, either (unless I use Jenkins Enterprise), has it?   Gesendet: Dienstag, 21. Juli 2015 um 14:37 Uhr Von: "nicolas de loof" An: "jenkinsci-users@googlegroups.com" Betreff: Re: Build Pipeline plugin and Build Flow plugin Did you considered using work

Re: Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread nicolas de loof
Did you considered using workflow plugin ? 2015-07-21 16:37 GMT+02:00 nicolas de loof : > build flow did introduce buildgraphview-plugin for this exact use case > > build pipeline only can rendre static and mostly sequential pipelines > > 2015-07-21 16:19 GMT+02:00 Christoph Kutzinski : > >> Hi,

Build Pipeline plugin and Build Flow plugin

2015-07-21 Thread Christoph Kutzinski
Hi,   I'm trying to set up a CD pipeline with Jenkins where I can   I) concisely define the relationship (triggers) between the single pipeline steps (jobs) II) have a nice visualisation of the full pipeline   The Build Flow plugin is a good fit for I, while the Build Pipeline plugin is a ni

Re: Master slave connection problem (Ubuntu slave)

2015-07-21 Thread Ozcan Ovunc
Oh. I know Build Executor Status bar but that shows only the jobs that nodes are currently building :/ On Tuesday, July 21, 2015 at 4:05:52 PM UTC+3, Mark Waite wrote: > > Sorry for using the wrong phrase to describe it. On my installation, it > is the "Build Executor Status" and is immediately

Re: Stuck creating local jenkins update center

2015-07-21 Thread jje
Last but not least: Gettin' metadata via browser(JSON Index File) is now working as expected. But it is nearly impossible to move jenkins to download plugins. Even though either machine and jenkins user has access to local repository granted, which actually has been tested by getting plugin fil

Re: Stuck creating local jenkins update center

2015-07-21 Thread jje
Pls. note that our local repo containing plugin-files and jenkins master reside in same network either. Am Dienstag, 21. Juli 2015 15:50:11 UTC+2 schrieb jje: > > Last but not least: > > Gettin' metadata via browser(JSON Index File) is now working as expected. > But it is nearly impossible to mo

Re: Jenkins behind SSL, my case not going through

2015-07-21 Thread Snd Lt
Thanks for your time. I'm still learning up on Apache and Jenkins. I've been struggling for days with this. Would you mind briefly narrating which should go to httpd.conf and to ssl.conf? Perhaps I'm putting ProxyPass to wrong places. Not getting the whole picture. Corrected the syntax but sti

Re: Master slave connection problem (Ubuntu slave)

2015-07-21 Thread Mark Waite
Sorry for using the wrong phrase to describe it. On my installation, it is the "Build Executor Status" and is immediately above the list of slaves on the left side of the root page. On Tue, Jul 21, 2015 at 7:00 AM, Ozcan Ovunc wrote: > Where is the "node executors" menu btw? > > On Tuesday, Jul

Re: Master slave connection problem (Ubuntu slave)

2015-07-21 Thread Ozcan Ovunc
Where is the "node executors" menu btw? On Tuesday, July 21, 2015 at 3:54:57 PM UTC+3, Mark Waite wrote: > > The user executing that JNLP file on your Ubuntu machine probably does not > have permission to write to the /home/jenkins directory. From the "node > executors" menu you should be able

Re: Master slave connection problem (Ubuntu slave)

2015-07-21 Thread Mark Waite
The user executing that JNLP file on your Ubuntu machine probably does not have permission to write to the /home/jenkins directory. From the "node executors" menu you should be able to review the properties of that node, including the name of the user it is using. I suspect it is not the jenkins

Master slave connection problem (Ubuntu slave)

2015-07-21 Thread Ozcan Ovunc
Hi, I have a Windows master and Ubuntu 14.04 slave (VirtualBox). I successfully connected them by running /home/jenkins$ java -jar slave.jar -jnlpUrl http://192.168.56.1:8080/computer/Kole/slave-agent.jnlp command and the output was: Jul 21, 2015 3:22:08 PM hudson.remoting.jnlp.Main createEn

Invoking top-level Maven targets on a slave

2015-07-21 Thread Anthony Green
I''m running a Jenkins Ubuntu Master with an OS X Slave I can't get a build step "Invoking top-level Maven targets" to run on a slave. I get a FATAL: command execution failed java.io.IOException : Cannot run program "mvn" I

Re: Jenkins Perforce workspace question

2015-07-21 Thread lata
1) What's the problem here? 1. Jenkins Perforce Workspace at /var/lib/jenkins/jobs/... - The name of this P4 workspace is whatever you have typed in the 'Workspace' field of your Jenkins project configuration -> Perforce section. I'm guessing you typed in 'jenkins_test'. - The P4 root of this P

Exclusion-Plugin: Dynamic Name of Resource

2015-07-21 Thread mr
Is it possible to set the name of the resource to be managed dynamically? For example as ${testDatabase} The aim is to start multiple execution of one job depending on the availability of test databases. The job can be executed with different test databases, and the parallel execution shall be

Re: Can't figure out how Jenkins GIT Plugin works

2015-07-21 Thread ozcaaan94
I totally agree with you. I thought that I was mising something like some configuration setting. Multi Branch Plugin solved my problem tho. Thank you so much! On Tuesday, July 21, 2015 at 10:58:01 AM UTC+3, nicolas de loof wrote: > > multi-branch support in git-plugin is a poor implementation,

Re: Jenkins behind SSL, my case not going through

2015-07-21 Thread Corneil du Plessis
ProxyPass required a path and a url The path is applied to incoming request and matches are sent to the url. ProxyPass /jenkins http://localhost:8080/jenkins In your case you had ProxyPass http://localhost:8080/ The correct syntax is: ProxyPass / http://localhost:8080/ On Monday, 20 July 2015

RE: Version Issues on Website

2015-07-21 Thread David Aldrich
Just to mention that it seems that 1.621 is still not available despite being advertised. > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of Daniel Beck > Sent: 20 July 2015 13:18 > To: jenkinsci-users@googlegroups.com >

Re: Can't figure out how Jenkins GIT Plugin works

2015-07-21 Thread nicolas de loof
multi-branch support in git-plugin is a poor implementation, and running the job manually will just rebuild the last commit (so only one branch from your 3 ones) not all of them, not even considering build history is irrelevant with branches mixed If you want actual multi-branch support select a j

Re: Jenkins Perforce workspace question

2015-07-21 Thread Martin
Also, the Jenkins doc says user can change JENKINS_HOME directory: https://wiki.jenkins-ci.org/display/JENKINS/Administering+Jenkins I don't quite understand this either. How can we change its home directory after it is installed? Like Java installation, $JAVA_HOME has to always points to the Ja

Jenkins Perforce workspace question

2015-07-21 Thread Martin
Hello, it's the first time to setup Jenkins Perforce Plugin. I just wanted to setup a simple project to test the automatic build feature in Jenkins. On my local machine, my project is: /home/martin/p4/test I created a workspace named jenkins_test, whose root is /home/martin/p4/test. I can test

Can't figure out how Jenkins GIT Plugin works

2015-07-21 Thread ozcaaan94
Hi everyone, I have a project on Github which has 3 branches: master, test2, test3 -> https://github.com/ozcanovunc/jenkins-test/blob/master/test.py. And I'm running test.py file in batch command by "python test.py" command. - test2 branch : code with error in test.py - test3 branch : cod

email list of all users defined in active directory + role-based auth

2015-07-21 Thread lata
Hi We are using Active Directory + Role-Based Strategy for Jenkins authentication. We want to be able to send out notifications on important changes such as upgrades to all users on our Jenkins, and also restrict it only to those users / groups who are listed in 'User/Group' of 'Assign Roles' s