Re: How to configure https on jenkins

2018-09-28 Thread Robert Rajendra
Thanks rajendra, i followed one of the DOC IN internet https://www.digitalocean.com/community/tutorials/how-to-configure-jenkins-with-ssl-using-an-nginx-reverse-proxy and i followed the exact steps but still unable to get the results *Robert Rajendra* Associate Network/Server Support Enginee

Re: How to configure https on jenkins

2018-09-28 Thread RAJENDRA PRASAD
Following link can help you: https://wiki.jenkins.io/plugins/servlet/mobile?contentId=135468777#content/view/135468777 Thanks, Rajendra On Sat 29 Sep, 2018, 8:40 AM Robert Rajendra, wrote: > Hi Team, > > I mapped my domain with jenkins server 's IP that is jenkins.abc.net:8081 > can anyone help

How to configure https on jenkins

2018-09-28 Thread Robert Rajendra
Hi Team, I mapped my domain with jenkins server 's IP that is jenkins.abc.net:8081 can anyone help me that how to use ssl with the jenkins also i want it to like :- when some one hit jenkins.abc.net i want it to redirect to jenkins.abc.net:8081 Please help me to accomplish this *Robert Raje

Set up Jenkins-BlueOcean for non-trivial C++ project with dependencies

2018-09-28 Thread { peetonn }
Hi there! I need to setup pipeline (-s) for the project, which is a little more complicated than ./configure && make && make install. Thus, unfortunately for me, I find all the tutorials in this universe on this topic useless, as they demo simplest unrealistic "hello-world" examples which are

Re: Pipeline jobs for PRs failing due to Jenkins NOT using configured account.

2018-09-28 Thread Manny DaSilva
I'm having a similar issue. The multi-branch pipeline uses agent label 'docker' and we only have one build agent with that label. Most builds are running correctly on the agent node labeled 'docker' BUT some of the PR builds are running directly on the master node which does NOT have 'docker' l

message "You have data stored in an older format and/or unreadable data." after Groovy init script

2018-09-28 Thread Jeroen Wolff
Hi all, I've got an init.d/ groovy script to configure the mailer task: import jenkins.model.* def jenkinsInst = Jenkins.getInstance() def mailerDesc = jenkinsInst.getDescriptor("hudson.tasks.Mailer"); mailerDesc.setSmtpHost("smtp.domain.com") mailerDesc.setUseSsl(false) mailerDesc.setDefaultSuf

Re: plugin to scan the Jenkins console log and determine the type of the failure

2018-09-28 Thread pbasanta2002
Basically i categorized the job .. based on the ERROR on the log .. now need to count how many job on each category .. On Friday, September 28, 2018 at 8:02:10 PM UTC+5:30, damien.c...@collibra.com wrote: > > If you use MongoDB as backend for the storage of rules and failures (see > plugin docu

Re: Jenkins global metrics

2018-09-28 Thread RAJENDRA PRASAD
Following snippet can collect all jobs into a list, Just modify the script and please remove the filtering logic from previous script, And add the following snippet, that's all you will get all the jobs. def jobsList=[]; Jenkins.instance.projects.collect { String currentJob=it.name; jobsList.

Re: Jenkins global metrics

2018-09-28 Thread RAJENDRA PRASAD
Hi , Happy to help you, If you need all the jobs ( instead of filtered ones based in job name) , small chance needs to done in script, I can can update the script send you tomorrow, today I am fully tired, if it is utter udgent, let me know I can work today itself. Regarding email, I am using ant

Re: Jenkins global metrics

2018-09-28 Thread gthosani1
I have used autojenkins, it’s command line and api is neat to expose job details Sent from my iPhone > On Sep 27, 2018, at 11:59 PM, RAJENDRA PRASAD > wrote: > > Here is the Ggroovy Script: > import javax.mail.* > import javax.mail.internet.* > import jenkins.model.* > import java.text.Simpl

Re: Jenkins global metrics

2018-09-28 Thread gotviseryon
Rajendra. Thank you so much for the information. It is very descriptive. But, need some more help. Sorry to bother, I'm new to Groovy. You mentioned you are filtering the job name by 'Monitor'. Just wanted to check how it works for this scenario I need details of all jobs, irrespective of

Re: plugin to scan the Jenkins console log and determine the type of the failure

2018-09-28 Thread damien . coraboeuf
If you use MongoDB as backend for the storage of rules and failures (see plugin documentation), you can then have some graphs and stats. I don't know exactly what you're looking for, but it's very handy. On Friday, September 28, 2018 at 3:36:14 PM UTC+2, pbasan...@gmail.com wrote: > > Thanks fo

Re: plugin to scan the Jenkins console log and determine the type of the failure

2018-09-28 Thread pbasanta2002
Thanks for you reply ..is there a way to count the Number of Jobs on each category. On Thursday, September 27, 2018 at 4:48:09 PM UTC+5:30, Damien Coraboeuf wrote: > > https://plugins.jenkins.io/build-failure-analyzer ? > > On Thu, Sep 27, 2018 at 12:10 PM > > wrote: > >> Hi >> >> Is there a p

How to get workspace folder content of EACH slave nodes?

2018-09-28 Thread 'Xiaocheng Wang' via Jenkins Users
Hello Jenkins experts, We have deployed 1 Jenkins master node + 3 slave node. Jobs are building on different slaves. We need to get the workspace folder content of each running build in realtime, so that to acquire additional build progress details. We tried to get this info by URL " *http://:

Multi-configuration project using declarative script?

2018-09-28 Thread David Aldrich
Hi I want to build a C++ project using make on numerous machines, each having a different version of g++. Currently I do this using a multi-configuration project. The configuration is growing more complicated in that some machines need some commands to run before calling make, so I have conditio