Re: Jenkins Pipeline Issue

2016-08-22 Thread Baptiste Mathus
You want to have a look at the Pipeline Multibranch Plugin. Define a Jenkinsfile in the repo with your build logic. Then each time you create a new branch it will be indexed and built if such a Jenkinsfile can be found. Cheers Le 22 août 2016 11:40 PM, "vishad alekh" a

Re: Building multiple maven projects without a parent pom?

2016-08-22 Thread Baptiste Mathus
Not sure I get what you're trying to do, but using pipeline it'd probably be easy to write that logic you're expressing. Cheers Le 22 août 2016 4:22 PM, "Kristian Rink" a écrit : > Folks; > > for my use case, I'd like to configure a setup / jenkins project that > should

Re: Setting different build time outs for a Jenkins Job

2016-08-22 Thread Baptiste Mathus
Hello, I don't think it is. But your request seems definitely legit to me. For example too defining two options, with the first triggered case some threshold is reached. You could file a Jira issue with your use case. And ideally the PR so that this has better chances to go forward. Cheers! Le

Re: What is a permanent agent or slave server when discussing Jenkins?

2016-08-22 Thread Baptiste Mathus
Well, I guess not. You're probably the first one to ask about this. The question you're asking seems to me to be quite too generic to have a dedicated term. As for defining term in general in OSS and in this project, "asking" Kohsuke is not how it works. Or I mean, you can do it here in public

Jenkins Pipeline Issue

2016-08-22 Thread vishad alekh
Hi All, I am using jenkins version 2.11 . I want to use jenkins pipeline plugin feature. We have branches in GIT which are release specific. I want that if a new branch is created in GIT, then automatically a job should be created in jenkins which atleast can do a code checkout . Please guide

Real-time test results display for long running job

2016-08-22 Thread Bill Matzen
I'm looking for a way to display updates within Jenkins of *intermediate* results of long running jobs (kicked off by a Windows Bath Command build step). For example one Jenkins job may run for 2 hours, and have 20 individual steps each with it's own success/failure, and instead of having to

Need :: Alfresco developer at Philadelphia,PA

2016-08-22 Thread alan james
Please reply to *alan_ja...@visionisys.com * Hello, Hope you are doing great. Job Title *:* Alfresco developer Job Type *:* Corp-to-Corp Duration *:* 12 months City *:* Philadelphia State *:* PA Total Experience *:* 8 Interview Type *:* phone /

Re: Unable to migrate jenkins 1.5xx to different server

2016-08-22 Thread Alok Kumar Singh
Looks like it is more of a problem with view jobs On Friday, August 19, 2016 at 1:23:59 AM UTC-4, Alok Kumar Singh wrote: > > I am trying to migrate jenkins from one machine to another machine by > copying the complete jenkins folder. It works fine for 1.6xx but it is not > working for any of

You Don't Know Jenkins

2016-08-22 Thread Jason Kulatunga
Hey Jenkins-Users, I was told this might interest some of you. I'm writing a series of blog posts describing how we automate Jenkins at scale (hundreds of Jobs, hundreds of developers, dozens of Jenkins servers + nodes just for our team). Part 1 - Automated Jenkins Install using Chef

Re: Permission in Scriptlet scripts-Can they be scripted?

2016-08-22 Thread Daniel Beck
Not an answer, but be very careful who you grant that permission to -- while it may not look that way, Run Scripts is the most powerful individual permission in the system, more than Administer (although implied by it for historical reasons). > On 22.08.2016, at 15:51, Ioannis Moutsatsos

Building multiple maven projects without a parent pom?

2016-08-22 Thread Kristian Rink
Folks; for my use case, I'd like to configure a setup / jenkins project that should work more or less like this: * clone a defined set of maven modules from a local git server in a defined order into a set of named folders in the current jenkins projects workspace * iterate over these folders

Re: Error while deploying SOA BPEL composite using jenkins

2016-08-22 Thread Dirk Heinrichs
Am 22.08.2016 um 14:27 schrieb Sitaram Makina: > Updating > svn+ssh://10.207.166.175/EIS/subversion/repository/Myproject/branches/Praxiar_POC/praxairCIPOC > at revision '2016-08-22T17:25:14.480 +0530' If you want to make stuff unreadable, this is NOT sufficient. I could simply mark your text

Permission in Scriptlet scripts-Can they be scripted?

2016-08-22 Thread Ioannis Moutsatsos
Placing scriptler scripts (with the appropriate META header) in the JENKINS_HOME/scriptler/scripts folder allows their autodiscovery and loading once the server is re-started. However, these scripts are still not usable for builds until the permission is set to 'Allow execution by user with

Re: Multi-Branch Pipeline triggers interval example?

2016-08-22 Thread Greg Smith
As I hate searching groups for problems, finding exactly my problem, but not finding any answer -- I wanted to follow up on my own post. I received this example of how to setup the job to build every 15 minutes properties([pipelineTriggers([cron('H/15 * * * *')])]) When I filed a bug for the

Re: HA (high availability) Jenkins setup across 2 sites

2016-08-22 Thread Andy Pemberton
Hi John: In full disclosure, I work @ CloudBees, but I'd be remiss not to mention HA is one of the core features of our offering: https://www.cloudbees.com/products/cloudbees-jenkins-platform/enterprise-edition/features/high-availability-plugin There are also some future plans under

Re: Pipeline: How to access Jenkins build information from pipeline?

2016-08-22 Thread jerome
Hi, You may want to take a look at the global env variables for the pipeline on your own Jenkins server: http://*JenkinsHost*/job/*MyJobName*/pipeline-syntax/globals replace the bold part with yours. You may find many things already defined into environment. To access them into groovy script

peoplesoft and jenkins

2016-08-22 Thread Irfan Sayed
Hi, I know that we use AppDesigner to compile/build the people code. is there any way i can call/invoke the APPdesigner from jenkins to build the peoplcecode. I am looking for continuous integration for peoplesoft/peoplecode Regards -- You received this message because you are subscribed to

Error while deploying SOA BPEL composite using jenkins

2016-08-22 Thread Sitaram Makina
Hi Team, I am new to jenkings-CI and i am facing issue while deploying SOA BPEL composite (12.2.1.1.0 version) to weblogic server Appreciate your help on this Building in workspace /home/oracle/.jenkins/workspace/CIPOC Updating svn+ssh://10.207.166.175

Re: Jenkins takes too long for loading recent changes of current job (15min approx)

2016-08-22 Thread Daniel Beck
When asking about a possible regression, it helps to mention both the version you're using now, as well as the version you were using before. Try applying the workaround mentioned for SECURITY-243 here: https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2016-05-11 > On

Pipeline: How to access Jenkins build information from pipeline?

2016-08-22 Thread Lars Meynberg
Hi guys, I'd like to access some information about the job and its builds. I've found this example from the cloudbees repo: https://github.com/cloudbees/jenkins-scripts/blob/master/cancel-builds-same-job.groovy But when I try to access Jenkins.instance I get the error

Re: Using a Master Jenkinsfile for Multi-branch Pipelines

2016-08-22 Thread Sverre Moe
Take a look at Pipeline Global Library https://github.com/jenkinsci/workflow-cps-global-lib-plugin/blob/master/README.md You can maintain all build logic within a global build script which is called from within each Jenkinsfile. You would still need a Jenkinsfile within each repository on all

Re: sonarQube, best way with jenkins2

2016-08-22 Thread Simona Avornicesei
You should use sonar scanner for MSBuild for .NET projects and sonar maven for java projects. On .NET part you'll need to install a lot of stuff. I could make you a list if it interests you. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group.

Email publisher in Multi-configuration job

2016-08-22 Thread 'Pulkit Lall' via Jenkins Users
Hi, I have a Jenkins Multi-configuration job which build 1X3 jobs. I have 2 questions regarding this: 1. Once the build is complete, an email is sent with details like link to job, artifacts, build console, etc. but the problem is for artifacts and build console, I am not able to send email in

sonarQube, best way with jenkins2

2016-08-22 Thread Philippe Couas
Hi What is best way to configure Jenkins 2.7.2 with SonarQube 5.6.1 ? Sonar Runner seeems not recommended ? Regards -- 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

Re: Jenkinsfile: node {} should delete workspace when done?

2016-08-22 Thread ludovic SMADJA
That's exactly what's I'm done. IMHO, it's the same mechanism than for previous jenkins jobs (in order to avoid environment construction if needed). --        Ludovic SMADJA R engineer - build process and development JALIOS SA http://www.jalios.com Le lundi 22 août 2016 à 10:40 +0200,

Re: Jenkinsfile: node {} should delete workspace when done?

2016-08-22 Thread ST
Any input on this anyone? On Thu, Aug 18, 2016 at 11:29 AM, ST wrote: > According to Pipeline documentation [1], a node{} section in Jenkinsfile > creates a fresh workspace and removes it when done with all contained steps. > > However I'm seeing that the workspace

Re: Latest version of Chrome 52.0.2743.116 fails to launch under Jenkins 2.7.2

2016-08-22 Thread irina . nikolskaya
Hi! I have the same problem, but the decision which is described to me didn't help On Thursday, August 11, 2016 at 12:10:32 AM UTC+6, Kevin MacDonald wrote: > > I am running Jenkins v2.7.2 on Windows Server 2008 R2. > > Upon Chrome updating to this latest version, Watir now fails to launch >

Jenkins takes too long for loading recent changes of current job (15min approx)

2016-08-22 Thread Renuka Pampana
Hi, We have migrated recently to Jenkins new stable version. After migration, Jenkins takes too long for displaying the changes of the current job (approx. 15min). Can you please provide me some suggestions to improve the speed? Thanks, Renuka -- You received this message because you are