Combining the build from multiple VCSes...

2017-05-12 Thread Kirill Peskov
Hi All! A rookie question... ;) I've got a project where 'source' code of the web application (PHP) comes from SVN repo and the installers (for the deb and rpm packages) do come from GIT. What would be the best approach to automate such a build (I know it's a fake build because of PHP, but anyway

Re: adding custom parameters to configure publishers in withMaven pipeline step

2017-05-12 Thread Cyrille Le Clerc
Idea discussed with Alvaro Lobato: introduce an "options" Map as a parameter of withMaven(). We will also make these options configurable at the Jenkins global level then at the folder level. See sample below node { stage ("build") { git "https://github.com/spring-projects/spring-pe

EC2 plugin-discovered agents configuration issue

2017-05-12 Thread 'Meister Murphy' via Jenkins Users
Hi all, I recently installed the EC2 plugin in an effort to use a spot fleet, and i'm having some issues: 1) The node that was created for an instance in the fleet will only allow me to configure it's name, resulting in me not being able to restrict its usage. 2) Jobs run on it appear to be usin

Per Job Dashboard: Add information from Jenkinsfile?

2017-05-12 Thread James Green
Is this possible? I have just adapted a Jenkinsfile to set the job description based on some dynamic values. But what I would really like it to add entries into a simple map of key=value pairs that can then be rendered on the job screen. I think I saw something a little like this in the enterpri

Creating a Jenkins plugin

2017-05-12 Thread arjunaws01
Hi, I need to build an Angularjs project using Ionic and Cordova through Jenkins, so basically an Ionic plugin with the functionalities of the existing Maven or Gradle plugin for Jenkins. All instructions I've seen online seem vague to me and the jenkinsci-...@googlegroups.com group seems clos

BlueOcean Pipeline and huge number of parallel steps

2017-05-12 Thread Clément Gautier
Hello there :) We have in our company a build that launch a lot of tests on our code base and result in more that 400 paralell branches, each of them executed on a different slave node. Actually we face an issue where pipeline can't display all the parallel branches: "Unable to display more" We

Re: Creating a Jenkins plugin

2017-05-12 Thread Mark Waite
Run your build script from a shell command (or batch file or from the XShell plugin if you want a platform independent invocation of the build command), rather than creating a specific plugin to run your build tool. You'll complete your task faster and won't sacrifice much in usability. The jenkin

changing work space directory doesn't do anything

2017-05-12 Thread Zunayed Ali Morsalin
Steps to reproduce - Using a fresh instance of jenkins running inside a container from docker registry. - Created a multi branch project via blue ocean - updated settings. Manage jenkins > configure system > home directory > advance button > change directory to ${JENKINS_HOME}/workspace/*src*/$

Installing Jenkins Slave as a Windows Service via Chef Cookbook

2017-05-12 Thread Michael Worsham
I am trying to setup AWS instance Windows-based Jenkins slave servers, totally headless via a Scalr/Chef cookbook deployment system. I have nearly everything working for the cookbook and its recipes for obtaining the information from the encrypted Chef data bag for setting up the configurations

Problems registering for jenkinsci-dev group

2017-05-12 Thread Kevin Phillips
I have been looking to get involved with some of the Jenkins plugins' projects, and was reading the getting started guide on jenkins.io. There it tells me I need to register with the jenkinsci-dev google group by sending an empty email to the 'subscribe' emai

Problems registering for jenkinsci-dev group

2017-05-12 Thread Victor Martinez
Although I'm subscribed I couldn't access since Google detected as a spam. But even if you agree to proceed te group box is empty. I'm pretty sure jenkins dev admins are already aware of. Cheers -- You received this message because you are subscribed to the Google Groups "Jenkins Users" grou

Re: adding custom parameters to configure publishers in withMaven pipeline step

2017-05-12 Thread Cyrille Le Clerc
Note: Mark Lagendijk proposed a hierarchical approach for options in JENKINS-43596 . It is a bit more sophisticated, more standardized ... but a bit more verbose than what we tried in my previous post *Hierarchical & standardized model* with

Re: Problems registering for jenkinsci-dev group

2017-05-12 Thread Kevin Phillips
Confirmed. I just connected to the jenkins IRC channel and they said the dev group has been flagged as "spam" by Google. :p Looks like I just have to wait until they get that problem sorted out. Thanks for the reply. On Friday, May 12, 2017 at 3:13:42 PM UTC-3, Victor Martinez wrote: > > Althou

Re: A job to update other jobs

2017-05-12 Thread Morgan Blackthorne
Hey man, long time :) Hope things are good. I'll keep this in the back pocket but I think the groovy setup is probably more along the lines of what I should use, thanks. On Tuesday, May 9, 2017 at 10:38:28 AM UTC-7, Kevin Burnett wrote: > > what is up morgan, man? :) > > i just tested this to up

Re: A job to update other jobs

2017-05-12 Thread Morgan Blackthorne
On Wednesday, May 10, 2017 at 4:23:26 AM UTC-7, maciej wrote: > > Morgan Blackthorne (2017-05-08 19:56): > > We're using Chef automation around configuring our Jenkins jobs. Basically > chef clones a git repo with the job XML files, and then tells Jenkins to > use them. > > What we want to hav

[Jenkins] Channel to control machine closed unexpectedly

2017-05-12 Thread Chitra Sharavanan
java version - 1.8.0_131 Jenkins version - 2.60 Unexplained failure while running the jenkins job. The Jenkins job or control machine closed the channel unexpectedly FATAL: command execution failed java.io.IOException at hudson.remoting.Channel.close(Channel.java:1292) at hudson.remoting.Cha

SVN post-commit notify for parameterized job

2017-05-12 Thread Osborn, Tammy (DNR)
I have a parameterized job so user can select the specific revision to build. This is in case we don't have a build saved for an older revision. The job's Repository URL includes the revision build param like this: http://svn/app/trunk/@${revision} This works fine when running the build manually.