CI/CD Jenkins for Non Java projects

2017-11-01 Thread samy raj
Hello All, I am looking for a simple project example which has non-java for a complete cycle of DevOps. I have a requirement for a project which has just many configuration files, Unix script files. I am able to move them into github. But, I need to understand how to build and to write

Re: [Event]: Bugs wanted

2017-11-01 Thread Stephen Connolly
On 1 November 2017 at 13:30, Alyssa Tong wrote: > Hi All, > > Out of sheer fun, plus getting a bug fixed, Stephen Connolly > has signed up to do a live bug fix at the > upcoming Jenkins Online Meetup >

Re: Is there a way of cloning the repo an additional layer down?

2017-11-01 Thread Mark Waite
On Wed, Nov 1, 2017 at 2:36 PM itchymuzzle wrote: > > If you use the dir('dest-dir') { checkout scm } syntax, you avoid using > that special case from the git plugin, and have something that is > maintained in code (and looks like pipeline), rather than something that >

Re: [Event]: Bugs wanted

2017-11-01 Thread Daniel Beck
> On 1. Nov 2017, at 21:30, Alyssa Tong wrote: > > Pls send me your bug suggestions by this Friday, 3rd Nov 8am PT and plan to > watch it go down live next Tuesday, 7 Nov @ 8am PT > JENKINS-45927 JENKINS-34337 JENKINS-44972 JENKINS-18992 isn't quite a bug, but close to

Re: Is there a way of cloning the repo an additional layer down?

2017-11-01 Thread itchymuzzle
> If you use the dir('dest-dir') { checkout scm } syntax, you avoid using that special case from the git plugin, and have something that is maintained in code (and looks like pipeline), rather than something that looks like a special case of the git plugin. This works, but the code is cloned

[Event]: Bugs wanted

2017-11-01 Thread Alyssa Tong
Hi All, Out of sheer fun, plus getting a bug fixed, Stephen Connolly has signed up to do a live bug fix at the upcoming Jenkins Online Meetup , he will attempt to do this in 20 minutes. With that said,

Re: [hard] problem building github tags

2017-11-01 Thread j . knurek
hmm, I checked out your branch: https://github.com/stephenc/github-branch-source-plugin/tree/jenkins-34395 compiled and installed: 2.2.5-SNAPSHOT (private-e98acfa4-root) but still not seeing any tags built On Wednesday, 1 November 2017 16:54:22 UTC+1, Stephen Connolly wrote: > > 2.2.4 does not

Re: [hard] problem building github tags

2017-11-01 Thread j . knurek
ah, well that explains it :) I should have paid more attention that the PR is still open https://github.com/jenkinsci/github-branch-source-plugin/pull/158/ On Wednesday, 1 November 2017 16:54:22 UTC+1, Stephen Connolly wrote: > > 2.2.4 does not have discovery of tags merged yet > > On 1

Re: [hard] problem building github tags

2017-11-01 Thread Stephen Connolly
2.2.4 does not have discovery of tags merged yet On 1 November 2017 at 08:15, wrote: > I've got version 2.2.4 of GitHub Branch Source Plugin installed, and > compiled, installed, and configured my organization folder to use >

Re: Kubernetes Plugin - Add ‘Environment Variable’ Button is not functional in Jenkins ‘Configure System’ under ‘Container Template’

2017-11-01 Thread Carlos Sanchez
It's a known issue https://issues.jenkins-ci.org/plugins/servlet/mobile#issue/JENKINS-47112 On Wed, Nov 1, 2017, 16:29 Avi Segev wrote: > > > Versions used: Jenkins ver. 2.60.1, Kubernetes plugin version 1.0 (also > tested on version 1.1). > > > We have a functional

Re: [hard] problem building github tags

2017-11-01 Thread j . knurek
I've got version 2.2.4 of GitHub Branch Source Plugin installed, and compiled, installed, and configured my organization folder to use https://github.com/AngryBytes/jenkins-build-everything-strategy-plugin which uses: @Override public boolean isAutomaticBuild(SCMSource source, SCMHead

Re: Best way to develop pipeline groovy

2017-11-01 Thread Christoph Ruepprich
Thanks Daniel, when making changes in replay, is there a way to promote those changes to the actual script, or would I have to copy them? Will the Jenkins CLI work only for declarative pipeline syntax, or will scripts work, too? Cheers, C On Wednesday, 1 November 2017 08:02:12 UTC-5, Daniel

Re: Best way to develop pipeline groovy

2017-11-01 Thread Christoph Ruepprich
Thanks Alex, I think the replay is probably the better option for me. C On Tuesday, 31 October 2017 17:05:14 UTC-5, slide wrote: > > There are two things that might make your life easier: > > 1) Jenkinsfile, you can put this into your source control and then it will > be executed as if it were

Kubernetes Plugin - Add ‘Environment Variable’ Button is not functional in Jenkins ‘Configure System’ under ‘Container Template’

2017-11-01 Thread Avi Segev
Versions used: Jenkins ver. 2.60.1, Kubernetes plugin version 1.0 (also tested on version 1.1). We have a functional dynamically provisioned Jenkins slave that was initially configured with a container template and a few environment variables. For some reason the buttons ‘Add

Re: Uninstall jenkins and its dependencies from Red Hat Linux Enterprise Edition(5.8)

2017-11-01 Thread yerriswamy . konanki
Hi, You can try the following command "sudo yum remove jenkins" On Thursday, October 13, 2016 at 1:47:15 PM UTC+5:30, chinmoy padhi wrote: > > Hi Google Users, > > I am trying to uninstall jenkins using rpm -e commands, but it is not at > all removing all the dependencies. > So how to

Re: Best way to develop pipeline groovy

2017-11-01 Thread Daniel Beck
> On 31. Oct 2017, at 22:51, Christoph Ruepprich wrote: > > This gets pretty tedious and time consuming. Is there a better way to develop > scripts without having to either develop them in the web UI or copy & paste > them?