Unable to find Test coverage Report in Jenkins using Jacoco

2016-02-17 Thread balajee venkatesh
Hello, I have a gradle project following default directory structure ( src-main-java & src-test-java). I have included a package for containing my codes (com.bitwiseglobal.addition). I want Jenkins to produce a Code coverage report using 'jacoco'. The gradle build script I'm using : apply

How to pass build.xml from one Jenkins to another Jenkins

2016-02-17 Thread Jenkins
Hello, I am looking for a solution how to to pass the build.xml file from one Jenkins to another Jenkins. The build.xml has specific information for the project where the one jenkins needs that information how to go about? Please help me on this. Thanks, Naveen -- You received this message

Want urgent answer on issue : Disable Configure page http://localhost:8080/configure after installing GO plugin for GOLANG code integration https://wiki.jenkins-ci.org/display/JENKINS/Go+Plugin .

2016-02-17 Thread Mahesh Wabale
I have to integrate GO lang code with jenkins for autobuild and autodeployment feature . Jenkins Has plugin for GO code https://wiki.jenkins-ci.org/display/JENKINS/Go+Plugin .. But after i installing GO plugin successfully and restart the jenkins server , I cant able to edit my

Workspace directory location for a pipeline!!!

2016-02-17 Thread ok999
The workspace of a pipeline/workflow is weird. Its not the usual path on the slaves but rather on the master inside the jobs directory. Is this the way how it should be? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

Re: [Jenkins-events] Request for participation: Jenkins Events Officer candidates

2016-02-17 Thread Alyssa Tong
thank you Oleg :o) On Wed, Feb 17, 2016 at 3:35 PM, Oleg Nenashev wrote: > Am I eligible to nominate Alyssa? :) #surprisesurprise > > 2016-02-18 2:11 GMT+03:00 R. Tyler Croy : > >> >> Based on the team lead proposal >>

Re: [Jenkins-events] Request for participation: Jenkins Events Officer candidates

2016-02-17 Thread Oleg Nenashev
Am I eligible to nominate Alyssa? :) #surprisesurprise 2016-02-18 2:11 GMT+03:00 R. Tyler Croy : > > Based on the team lead proposal > (https://wiki.jenkins-ci.org/display/JENKINS/Proposal+-+Project+sub-teams) > which was previously approved in a project governance meeting,

Request for participation: Jenkins Events Officer candidates

2016-02-17 Thread R. Tyler Croy
Based on the team lead proposal (https://wiki.jenkins-ci.org/display/JENKINS/Proposal+-+Project+sub-teams) which was previously approved in a project governance meeting, I asking on behalf of the Jenkins board[0], for candidates who are willing to act as the Jenkins Events Officer. The Jenkins

Re: Save all configurations after Jenkins update

2016-02-17 Thread jieryn
Looks interesting! I haven't tried it. It doesn't appear to work with external changes coming into the configuration from outside the Jenkins server. (git pull) So we'd have to make up our own minds about when to do that anyway, this plugin porcelain doesn't seem to buy much. On Wed, Feb 17,

Re: Workflow Plugin -- how to display a summary page

2016-02-17 Thread Rinaldo DiGiorgio
On Tuesday, June 16, 2015 at 3:04:52 PM UTC-4, Jesse Glick wrote: > > On Wednesday, April 1, 2015 at 7:34:49 PM UTC-4, Rinaldo DiGiorgio wrote: >> >> Can someone suggest how to collect the test results to show trends on a >> single page so that users can go to one page and see all the results

Re: Workflow Plugin -- how to display a summary page

2016-02-17 Thread Rinaldo DiGiorgio
On Tuesday, June 16, 2015 at 3:04:52 PM UTC-4, Jesse Glick wrote: > > On Wednesday, April 1, 2015 at 7:34:49 PM UTC-4, Rinaldo DiGiorgio wrote: >> >> Can someone suggest how to collect the test results to show trends on a >> single page so that users can go to one page and see all the results

Re: Unable to use instanceOf on workflow/pipeline class

2016-02-17 Thread Rinaldo DiGiorgio
Thank you. On Wednesday, February 17, 2016 at 9:08:24 AM UTC-5, Rinaldo DiGiorgio wrote: > > Hi, > > I want to extract all the scm actions from the build. I use the following > groovy code > > build.allActions.each { item -> > actions = item > println "ACTIONS: ${actions.class}" > if

Re: Save all configurations after Jenkins update

2016-02-17 Thread Victor Martinez
What about https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin ? On Wednesday, 17 February 2016 21:39:18 UTC, Jesse Farinacci wrote: > > I've used JobConfigHistoryPlugin in the past. I find just using git is > easier and fits better with our existing tools, etc. > > On

Re: Problem triggering builds remotely

2016-02-17 Thread Victor Martinez
Correct me if I'm wrong but that job has any parameters? If so you will need to run another curl command: - https://wiki.jenkins-ci.org/display/JENKINS/Remote+access+API You can also add some verbose output:-v, --verbose Cheers On Wednesday, 17 February 2016 14:01:33 UTC, Asfand Yar

Re: Save all configurations after Jenkins update

2016-02-17 Thread jieryn
I've used JobConfigHistoryPlugin in the past. I find just using git is easier and fits better with our existing tools, etc. On Wed, Feb 17, 2016 at 4:35 PM, Victor Martinez wrote: > Maybe the below plugin might help you: > > -

Re: [GSoC2016] - Jenkins project submission (REVIEW is required)

2016-02-17 Thread Oleg Nenashev
UPD: Please follow this guide when you add new student project ideas 2016-02-17 21:40 GMT+03:00 Oleg Nenashev : > // Added jenkinsci-users ML to Cc > > среда, 17 февраля 2016 г., 21:36:59 UTC+3 пользователь

Re: [GSoC2016] - Jenkins project submission (REVIEW is required)

2016-02-17 Thread Oleg Nenashev
// Added jenkinsci-users ML to Cc среда, 17 февраля 2016 г., 21:36:59 UTC+3 пользователь Oleg Nenashev написал: > > Hi there, > > The activity was not very visible in the mailing list, but effectively we > are almost ready to apply for Google Summer of Code 2016. > The application docs are

Re: Save all configurations after Jenkins update

2016-02-17 Thread Maciej Jaros
jieryn (2016-02-17 17:01): for (item in hudson.model.Hudson.instance.items) { println("Saving " + item); item.save(); } Thanks, works great :-). I've just run it through Script Console. Regards, Nux. -- You received this message because you are subscribed to the Google Groups "Jenkins

Scheduled maintenance notice: 2016-02-20 17:00-20:00 UTC

2016-02-17 Thread R. Tyler Croy
Since I'm getting good practice at restarting machines, I'm going to schedule another maintenance window for this Saturday morning (PST) to take care of some long outstanding updates. During the window services will be coming and going as I roll upgrades through the cluster. I will roll through

Re: Unable to use instanceOf on workflow/pipeline class

2016-02-17 Thread Baptiste Mathus
In general, don't use instanceof for classes coming from different classloaders. You can use string comparisons between classnames (theClass.getName()). Cheers Le 17 févr. 2016 3:08 PM, "Rinaldo DiGiorgio" a écrit : > Hi, > > I want to extract all the scm actions from

Pipeline plugin to access variable set in job in another job

2016-02-17 Thread Johann Muller
With the current flow plugin I can do the following: api = build("upload-files",VERSION_TO_DEPLOY:params["API_VERSION”])) build("deploy-files", ARTIFACT_TO_DEPLOY:api.environment.get("ARTIFACT_TO_DEPLOY") ) This is just a simplified version, as the deploy job has 5 blocks of these. All 5

Re: Gitlab Merge Request Builder

2016-02-17 Thread Paulo Moreira
Problem solved with: Add self-signed certificate: https://anandparthasarathy.wordpress.com/2014/01/14/connect-jenkins-to-internal-self-signed-certificate-servers-and-configure-ssl/ Set Gitlab nginx: nginx['ssl_ciphers'] = "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH" On Thu, Feb 11, 2016

Re: Save all configurations after Jenkins update

2016-02-17 Thread jieryn
Create a new freestyle job, run it @daily, or whatever. Add Groovy script execution build step, the full script is: for (item in hudson.model.Hudson.instance.items) { println("Saving " + item); item.save(); } On Wed, Feb 17, 2016 at 10:33 AM, Maciej Jaros wrote: > Hi. > >

Re: Confluence Wiki page editing broken

2016-02-17 Thread R. Tyler Croy
(replies inline) On Wed, 17 Feb 2016, Arjan Molenaar wrote: > Hi, > > I just tried to update the documentation for the plugin we're maintaining, > but it appears something is wrong with the Confluence wiki: > >

Save all configurations after Jenkins update

2016-02-17 Thread Maciej Jaros
Hi. When you save configuration of a Job after Jenkins update there are some changes made in the config.xml (e.g. plugin version change). Since I keep a history of all config.xml files in a repository that mess up history of changes... So. Is there some script or plugin that can re-save

Unable to use instanceOf on workflow/pipeline class

2016-02-17 Thread Rinaldo DiGiorgio
Hi, I want to extract all the scm actions from the build. I use the following groovy code build.allActions.each { item -> actions = item println "ACTIONS: ${actions.class}" if ( actions instanceof org.jenkinsci.plugins.workflow.steps.scm.MultiSCMRevisionState) { .. The above

Problem triggering builds remotely

2016-02-17 Thread Asfand Yar Qazi
Hi, I am having trouble triggering builds remotely. I am using Jenkins 1.647. (Please note: I have replaced sensitive info in the below examples with made-up values.) I have a job where I have ticked the "Trigger builds remotely" box, and entered a token (for example: "123456"). I added a

pipeline: How can you see a list of runs paused for input?

2016-02-17 Thread Dean Pehrsson-Chapman
Hi, Using the pipeline plugin there doesn't seem to be a way of finding job runs that are paused for input - even the API gives no indication. Is it an indication if the job is building but has no executor? Thanks, Dean -- You received this message because you are subscribed to the Google

Confluence Wiki page editing broken

2016-02-17 Thread Arjan Molenaar
Hi, I just tried to update the documentation for the plugin we're maintaining, but it appears something is wrong with the Confluence wiki: The text editing

Jenkins + Docker on Atomic Host

2016-02-17 Thread Rishabh Das
Hi, I was trying to configure a Jenkins job to spin a docker container on the Atomic Host. I configured Jenkins Docker plugin and added a Docker cloud and a Docker template for the image to be used. I attached a label to the docker image. While selecting 'Restrict where the project can be run'

Stats about elapsed times

2016-02-17 Thread R Srinivasan
Background: - multiple "job" streams each with number of stages (e.g. build, deploy, test) . Is there a plugin or some other method that can collect stats about the time spent in each stage? Of course a dashboard of this would be great as well. Any pointers appreciated. siren -- You received

reverse-proxy-auth-plugin crashes in version 1.5

2016-02-17 Thread Lois Burg
Hi, We recently updated from reverse-proxy-auth-plugin 1.4.0 to 1.5 and encountered a bug. A pull request was submitted on the plugin's github page: https://github.com/jenkinsci/reverse-proxy-auth-plugin/pull/23 However

Where to run jenkins in a modern environment?

2016-02-17 Thread Georg Heiler
Hi, I am thinking about running tools like Jenkins the modern way in the cloud or in a cloud like local datacenter. I am unsure about the pro's cons of each option: *Solution 1* Use a lower level scheduler like mesos + marathon (https://mesosphere.com/blog/2015/11/05/jenkins-dcos-mesos/)