Re: AWS Elastic Beanstalk No Downtime Upgrade /Cname swap.

2015-09-14 Thread Michael Neale
Not sure if there is a plugin that supports it, but from reading this: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.CNAMESwap.html it involves creating new environments and taking sure that RDS is NOT managed by beanstalk (that is a bit of a big deal if you do it

Re: Skype Integration With Jenkins

2015-09-14 Thread Michael Neale
; > > Thanks and Regards >Ajnish kumar > > On Fri, Sep 11, 2015 at 9:42 AM, Michael Neale <michae...@gmail.com > > wrote: > >> Hi Ajnish. >> >> there is this: https://wiki.jenkins-ci.org/display/JENKINS/Skype+Plugin >> - but it is required to run with a

Re: Workflow : how to send a basic "build failed" mail

2015-09-14 Thread Michael Neale
Interesting - is there no way to have an on failure handler (perhaps for all steps) vs a per node or global catch/print writer? (whilst it works it seems to be more work for a common enough desire for failure messages, making me think there is probably another way). On Friday, September 11,

Re: Workflow : how to send a basic "build failed" mail

2015-09-14 Thread Michael Neale
great - however (as commented in the ticket) it still isn't that friendly to use compared to sending a "positive" email. On Monday, September 14, 2015 at 11:57:06 PM UTC+10, Jesse Glick wrote: > > On Monday, September 14, 2015 at 7:42:13 AM UTC-4, Michael Neale wrote: >&

share your workflow examples

2015-09-15 Thread Michael Neale
I am interested in collating some real world workflow script examples (to aid in documentation). If you are interested in sharing yours, please do post! (make sure no secrets/confidential info in it). Anyone interested? -- You received this message because you are subscribed to the Google

Re: Skype Integration With Jenkins

2015-09-10 Thread Michael Neale
Hi Ajnish. there is this: https://wiki.jenkins-ci.org/display/JENKINS/Skype+Plugin - but it is required to run with a skype client. Skype doesn't have external apis unfortunately (at least last I heard). On Thursday, September 10, 2015 at 10:37:38 PM UTC+10, Ajnish Kumar wrote: > > Hello

Re: [workflow-plugin] keeping default parameters in build step

2015-09-10 Thread Michael Neale
Eric, this sounds like a bug, not a feature missing (or are they the same thing ? ;), worth opening a ticket for? On Thursday, September 10, 2015 at 10:12:43 PM UTC+10, Eric Engel wrote: > > Hi, > > > > I have this scenario: > > > > Job X with default Parameters A=1, B=2 and C=3. Workflow

Re: Can post to jenkins modify the branch of the SCM?

2015-09-17 Thread Michael Neale
Looks like with parametrized build someone has done it: http://www.sourceprojects.org/jenkins-and-the-git-branch-selection https://wiki.jenkins-ci.org/display/JENKINS/Git+Parameter+Plugin looks like a formalisation of this. On Thursday, September 17, 2015 at 5:20:56 AM UTC+10, John Cary

Re: Is there a way to have a step in a pipeline wait until a specific time to start?

2015-09-17 Thread Michael Neale
I wonder if you could use: https://wiki.jenkins-ci.org/display/JENKINS/Schedule+Build+Plugin with another job, that fires up and checks if it should run as a pre build step, and then runs (downide is that it will run, even if there isn't work to do from upstream, so perhaps there is a better

Re: Problem in using jenkins

2015-09-30 Thread Michael Neale
There are a few things in that question - but lets stick to the war bit. Jenkins won't build a war directly from source, something like maven would be needed to be setup to build the war, so that is probably what you want to look up. As for python - do you mean you have some python script

variable expansion and the 2 types of quotes in workflow script

2015-11-30 Thread Michael Neale
I would like some clarity on the different types of quotes in workflow script. Take this contrived example: env.FOO = 42 def FOO2 = 43 node { sh 'echo $FOO' sh "echo $FOO2" } This works - as you would expect. However, if you switch the quotes around, it fails. It seems single quote means

Re: Running Jenkins slave via systemd

2016-01-06 Thread Michael Neale
whenever I tried using env vars from the ' > */etc/sysconfig/jenkins-slave*' the process failed to start. > > > Any idea on that? > > Thanks, > Yarden > > > On Tuesday, December 29, 2015 at 1:34:36 AM UTC+2, Michael Neale wrote: >> >> Hi Yarden. >> &

Re: Workflow Jobs not appearing in queue

2015-12-20 Thread Michael Neale
Note that putting input in a node is not a great idea *in general* as it ties up the executor (and all the resourced related) for a human to come along... workflow script allows it but it can cause pain. On Sunday, December 20, 2015 at 9:48:54 PM UTC+11, Kai H wrote: > > Appears to have been

Workflow (pipeline) visual editor

2015-12-20 Thread Michael Neale
(I posted this to jenkins-dev last week, but thought some users here may be interested). An experimental graphical editor for Jenkins Workflow is here: https://github.com/jenkinsci/pipeline-editor-plugin (details in the README.md). Note very "experimental". -- You received this message

Re: Workflow (pipeline) visual editor

2015-12-22 Thread Michael Neale
FYI this should be available soon in the experimental update center: http://jenkins-ci.org/content/experimental-plugins-update-center On Monday, December 21, 2015 at 6:18:43 PM UTC+11, Michael Neale wrote: > > (I posted this to jenkins-dev last week, but thought some users he

Re: Running Jenkins slave via systemd

2015-12-28 Thread Michael Neale
Hi Yarden. I had a systemd script I used for "OPE" style slaves (which are basically jnlp slaves): https://gist.github.com/michaelneale/9635744 (a bit more written about it here), it worked for me as I learned systemd, may be able to adapt it:

Re: variable expansion and the 2 types of quotes in workflow script

2015-11-30 Thread Michael Neale
1, 2015 at 9:34:16 AM UTC+11, Michael Neale wrote: > > Ah yes of course, thanks. Same as ruby. > > > > On Tuesday, December 1, 2015 at 9:09:55 AM UTC+11, slide wrote: >> >> This is the behavior of the groovy language. Variables are interpolated >> in doub

Re: variable expansion and the 2 types of quotes in workflow script

2015-11-30 Thread Michael Neale
Ah yes of course, thanks. Same as ruby. On Tuesday, December 1, 2015 at 9:09:55 AM UTC+11, slide wrote: > > This is the behavior of the groovy language. Variables are interpolated in > double quoted strings, but not in single quoted strings. > > On Mon, Nov 30, 2015 at 3:06 P

Re: Workflow (pipeline) visual editor

2016-01-12 Thread Michael Neale
Glad to hear it Craig. Glad you enjoyed the "easter egg". One of the ideas is to both make it easy to show the workflow script but also convert it to a regular workflow job (when you need more power). If you look at the /config.xml (replace /configure with /config.xml) you can see the

Re: Issue getting Docker Pipeline plugin to build an image

2016-06-09 Thread Michael Neale
Right - I haven't used upstart for some time, but if it is like systemd, it may be placing constraints on child processes (like app armour) that prevent certain things from working. In the log for the build you should see the actual command used to build the image, might be worth noting if it

Re: Multibranch pipeline and github integration

2016-06-09 Thread Michael Neale
down. Select the credential from > above and you are good to go. No more API limits! (Well - 5,000 / hour - > which should be lots) > > > > > > > > On Wednesday, June 8, 2016 at 8:18:07 PM UTC-6, Michael Neale wrote: >> >> Those API limits will be hit quick

Re: Issue getting Docker Pipeline plugin to build an image

2016-06-08 Thread Michael Neale
uilds. Maybe I > need a holiday. > > On the original VM I didn't have any issues with building when using a > shell command. > > On Thursday, 9 June 2016 12:23:49 UTC+10, Michael Neale wrote: >> >> Try not to feel stupid ;) >> >> The @ directories I believe due to l

Re: [Jenkins][BlueOcean] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile

2016-06-08 Thread Michael Neale
Sorry Sebastian - can't really tell much from that failure. Try a clean checkout? I know people are now building on OSX and windows (almost working there) and linux. On Thursday, June 9, 2016 at 5:55:09 AM UTC+10, Sebastian MusioĊ‚ wrote: > > Hello all, > > I have an issue with blueocean

Re: [Jenkins][BlueOcean] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile

2016-06-08 Thread Michael Neale
ple to try. On Thursday, June 9, 2016 at 2:52:00 PM UTC+10, Michael Neale wrote: > > Sorry Sebastian - can't really tell much from that failure. > > Try a clean checkout? > > I know people are now building on OSX and windows (almost working there) > and linux. > > > > On

Re: Issue getting Docker Pipeline plugin to build an image

2016-06-08 Thread Michael Neale
Try not to feel stupid ;) The @ directories I believe due to locking - when a direcotry is locked and a step or a build wants to run in there, it appends a number, but I don't think that is your problem. Docker pipeline bind mounts in the workspace, so perhaps how your daemon is running vs

Re: java.lang.NoSuchMethodError: No such DSL method 'git' found

2016-06-08 Thread Michael Neale
normally that means that the git plugin is not installed, but I think it is included with the "recommended" - can you double check the installed plugin list? On Thursday, June 9, 2016 at 7:52:07 AM UTC+10, John McC wrote: > > I just downloaded and installed the Mac OSX package (Jenkins 2.8)

Re: Multibranch pipeline and github integration

2016-06-08 Thread Michael Neale
Those API limits will be hit quick when unathenticated, which is what you are seeing. Adding credentials is correct - are you using this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Plugin ? Perhaps some screen caps might make it clearer. This isn't a "clueless newbie"

Re: Blue ocean plugin release

2016-05-30 Thread Michael Neale
Hi - hopefully sometime soon there will be some beta version. At the moment a few critical features are missing to make it useful. If you want to try it I believe there is a docker image which will launch it - but not with your existing jenkins instance of course. On Monday, May 30, 2016 at

Re: How to break a pipeline manually?

2016-05-30 Thread Michael Neale
you can just return - and it should exit the script? (or throw an exception). On Monday, May 30, 2016 at 5:21:16 PM UTC+10, Feng Yu wrote: > > Hi there: > Here is my pipeline code: > node{ > // my code here > try { > // some steps > currentBuild.result = 'SUCCESS' >

Re: [Blue Ocean] Test reporting UI

2016-05-30 Thread Michael Neale
Worth posting the to dev list too? On Monday, May 30, 2016 at 5:42:15 PM UTC+10, James Dumay wrote: > > Hi all, > > I just wanted to share some very early mockups of what the test reporting > interface could look like in Blue Ocean. I believe it would be great if we > had a standard interface

Re: Blue ocean plugin release

2016-05-30 Thread Michael Neale
016-05-30 8:44 GMT+02:00 Michael Neale <mne...@cloudbees.com > >: > >> Hi - hopefully sometime soon there will be some beta version. At the >> moment a few critical features are missing to make it useful. >> >> If you want to try it I believe there is a doc

Re: Multiple pipelines in Jenkinsfile

2016-05-30 Thread Michael Neale
One jenkinsfile is one "pipeline" - what you may have done with many jobs in the past can be done with one pipeline. it can be quite rich if you need it to be. You can call other "jobs" from a Jenkinsfile, but I am not sure if that is what you mean. On Monday, May 30, 2016 at 3:47:40 AM

Re: Multibranch pipeline, problem running scripts

2016-05-30 Thread Michael Neale
I forget that "checkout scm" all the time - is there some way to make that more obvious or "fail safe"? (I know you can't just check things out without a node, so it can't be automatic, but it is all to easy to forget now). It seems like a "don't checkout scm" may have made more sense. On

Re: [Blue Ocean] A new user experience project for Jenkins

2016-05-27 Thread Michael Neale
BTW the github repositories have been "transferred" (ownership) into the jenkinsci org fully now (old links automatically redirect). On Friday, May 27, 2016 at 8:22:00 AM UTC+10, James Dumay wrote: > > Hi Jenkins users, > > Today I am happy to announce the open sourcing of a new user experience

Re: Re: [Blue Ocean] A new user experience project for Jenkins

2016-05-27 Thread Michael Neale
Well I hope the old doesn't go away! I don't think that is the intention. Pipeline-as-code is just a tidy starting point. There are a lot of freestyle jobs that people get a lot of value out of, and will for a long time. That non code type of working needs to be supported too, as you say - a

Re: Workflow (pipeline) visual editor

2016-01-13 Thread Michael Neale
That's great. The workflow generated isn't ideal yet, so that is something to be done. On Wednesday, January 13, 2016 at 9:13:42 PM UTC+11, Craig Rodrigues wrote: > > On Tue, Jan 12, 2016 at 6:12 PM, Michael Neale <mne...@cloudbees.com > > wrote: > >> >> In fa

Re: How do I get a Jenkins server to push bash code to a different server?

2016-01-28 Thread Michael Neale
Hi Kiran. Often people do the builds on the master - that is surprisingly common. However the power comes with distributed builds: https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds and slaves. that is where the work ideally happens. In terms of "pushing code into" I would

Re: REST api to trigger a job in the build pipeline

2016-02-02 Thread Michael Neale
to tweak the build api source code so that it can sync with > the UI pipeline and show its results ? > > Any help in this will be great . > > Thanks > Ramnath > > > On Monday, February 1, 2016 at 6:04:18 AM UTC-8, Ramnath Ananth wrote: >> >> Yes , thats corr

Re: REST api to trigger a job in the build pipeline

2016-01-31 Thread Michael Neale
igger job B not immediately but at any given time. > > So as of now whenever I trigger job B using /job/JobB/build api job B > successfully runs , but I can't see it on the UI pipeline view of jenkins , > the way you see it in the pipeline view when you trigger from the UI > On

Re: REST api to trigger a job in the build pipeline

2016-01-31 Thread Michael Neale
Ramnath, some questions: 1) what type of job - freestyle, workflow/pipeline or something else? 2) when you say "trigger a deploy job remotely" - do you mean create the job? or just trigger it to run ? Normally what people do is check "Build after other projects are built" on JobB config (in

Re: How can I POST data to a remote service in Jenkins pipeline/workflow?

2016-01-31 Thread Michael Neale
Do you have access to powershell? http://superuser.com/questions/344927/powershell-equivalent-of-curl looks possibly handy. (calling from pipeline script should be fine, but I can't find an example of how best to do it. Some comment that blocking for an external thing is not ideal.. vs a

Re: Jenkins deploys, authenticating target

2016-02-03 Thread Michael Neale
By target env do you mean the slave/agent where the build runs? On Wednesday, February 3, 2016 at 1:25:29 AM UTC+11, MoBarger wrote: > > HI all, here is an odd question. Of course we can affect permissions of > Jenkins jobs so that only defined people can run them. But has anyone ever > locked

simple build (DSL) for pipeline plugin

2016-02-24 Thread Michael Neale
Hey I thought some may be interested in this Pipeline DSL enhancement (ie a plugin that enhances Jenkins pipeline) which is installable as a plugin: https://wiki.jenkins-ci.org/display/JENKINS/Simple+Build+For+Pipeline+Plugin - interested in thoughts/feedback (you use it where you would use a

Re: pipelines and IRC

2016-01-26 Thread Michael Neale
If it is too much trouble for the irc plugin, IRC is pretty simple. Here is an example that I know works with freenode: https://gist.github.com/michaelneale/9a7fb436223a765d1775 (this could be put in a function or a global library DSL if you are using it a lot). (uses nc only). If nick has

Re: [theme] New Jenkins Material Design Theme

2016-01-24 Thread Michael Neale
Super nice. I love material design! Nice work. On Friday, January 22, 2016 at 4:16:50 AM UTC+11, Afonso F wrote: > > Hi guys, > > I created a Jenkins theme based on Google Material Design. It changes the > layout and icons using SVG ones. Take a look! > >

Re: simple build (DSL) for pipeline plugin

2016-03-13 Thread Michael Neale
t;. If I use ${this.env.BUILD_NUMBER}, then it works, but I > would feel more comfortable using your code if I understood why > ${env.BUILD_NUMBER} cannot be resolved. The Closure owner is a > WorkflowScript after all, and it should have "env". > > Thanks, > Martin > > On

Re: simple build (DSL) for pipeline plugin

2016-03-30 Thread Michael Neale
Yes - interestingly that question/answer comes up a lot. Yes, you have to install deps yourself if using Advanced "tab" to install it. If you use mvn hpi:run to run it in development you don't need to worry about it (which is why few come across this). If this bites you enough, might I

Re: How to bring up VM's using Jenkins?

2016-04-04 Thread Michael Neale
There are many ways to "skin this cat" so to speak - various cloud plugins, or things like docker can do this. If you are thinking vagrant and VMs on demand, docker pipeline or one of the docker plugins could help with this (as it can quickly create containers as needed, but for the cost of

Re: simple build (DSL) for pipeline plugin

2016-04-04 Thread Michael Neale
Good question, no not sure off the top of my head. I know Jesse identified a problem recently with checkpoints (and unrelated feature, but touches on save program I believe). On Monday, April 4, 2016 at 11:29:51 PM UTC+10, Martin d'Anjou wrote: > > I have written enough code to occasionally

Re: Blue Ocean Alpha Plugin - HTTP error of HTTPS

2016-07-27 Thread Michael Neale
This is odd, others use https and haven't seen this... the blue ocean url has https in it? On Wednesday, July 27, 2016 at 6:24:55 AM UTC+10, Dan QAmbox wrote: > > I went in and updated that to be HTTPS. I saved it but still getting the > same error in the console when trying to go to the blue

Re: Blue Ocean Alpha Plugin - HTTP error of HTTPS

2016-07-27 Thread Michael Neale
t I managed to go this long > without something else breaking it! > > > Dom > > > On Thursday, 28 July 2016 12:03:23 UTC+12, Michael Neale wrote: >> >> Are you able to share the relevant parts of your nginx config? >> >> I that redirect seems to be th

Re: Blue Ocean Alpha Plugin - HTTP error of HTTPS

2016-07-27 Thread Michael Neale
Are you able to share the relevant parts of your nginx config? I that redirect seems to be the problem (it should not redirect to non https, that seems a bug). I assume you are using example.com instead of your actual url just by way of example? On Thursday, July 28, 2016 at 9:59:53 AM

Re: Blue Ocean Alpha Plugin - HTTP error of HTTPS

2016-07-27 Thread Michael Neale
It's hard to say, it could be a quirk of proxy settings. The resources don't specify any absolute paths that I can tell. if you use chrome, can you see what resources are trying to load that way, and what is triggering them? inspecting the JS will help a bit. note that 'X-Forwarded-Proto'

Re: Multibranch Pipeline Jenkinsfile job script not seeing Credentials

2016-07-27 Thread Michael Neale
Should the credentialsId be the horrible ugly ID in advanced in credentials? is there no error, but it just doesn't run? On Thursday, July 28, 2016 at 7:34:51 AM UTC+10, Francis Lalonde wrote: > > Hi - > > I am writing a Jenkinsfile script to automate the creation of pipelines > using the

Re: How to break a pipeline manually?

2016-06-29 Thread Michael Neale
ere is a way to stop execution but leave the > result as say UNSTABLE. > > On Monday, 30 May 2016 18:38:41 UTC+10, Michael Neale wrote: >> >> you can just return - and it should exit the script? (or throw an >> exception). >> >> On Monday, May 30, 20

Re: Are pipelines incompatible with local developer builds?

2016-08-21 Thread Michael Neale
Hi Sorin. Short answer: No, I don't think the aim is to be incompatible at all with local developer builds. If you have a build script that uses make, then it is perfectly fine to use it, even as is. There is nothing wrong with a Jenkinsfile which is just delegating to a shell script or

BlueOcean plugin now available in main update center

2016-09-15 Thread Michael Neale
Some may have already noticed, but the blueocean plugin is now in the main update center under the name "BlueOcean Beta" (search for that name, it will bring any required dependencies). If you find any problems, the "blueocean-plugin" JIRA component is

Re: terminate pipeline parallal on first failure

2016-09-21 Thread Michael Neale
;> to the "full" syntax I would love to have it. >> >> Asmund >> >> On Sep 21, 2016 08:34, "Michael Neale" <mne...@cloudbees.com >> > wrote: >> >>> There is also: https://jenkins.io/doc/pipeline/ >>> >>>

Re: Maintaining a unique Build Number across multiple build servers

2016-09-21 Thread Michael Neale
Not sure if it may help solve a similar aim - but https://wiki.jenkins-ci.org/display/JENKINS/Version+Number+Plugin exists (might be others) On Wednesday, September 21, 2016 at 1:47:03 PM UTC+10, Cuong Tran wrote: > > It doesn't exist. > > On Monday, September 19, 2016 at 12:54:15 PM UTC-7,

Re: terminate pipeline parallal on first failure

2016-09-21 Thread Michael Neale
There is also: https://jenkins.io/doc/pipeline/ but generally for the steps - if you open a job to edit, you should see either near the pipeline text area or on the left a "Pipeline Syntax" link you can open in a new tab. It gives you a choice of steps that will build the syntax out for you as

Re: Blue Ocean Problems: Cannot read property 'jenkinsConfig' of undefined

2016-09-29 Thread Michael Neale
Hi - are there any other errors in the console (usually there is a "..." you can click on to see exact lines/source etc). Also - what state was the jenkins in that you installed ? MIght be worth opening a ticket under the "blueocean-plugin" component. On Thursday, September 29, 2016 at

Re: Email-Ext and Pipeline Model Definition - How to send email notifications Culprits and Developers as recipients?

2016-10-30 Thread Michael Neale
If you put it in postBuild section (similar to notifications) it should work fine. It is most unfortunate that emailext requires the workspace. On Saturday, October 29, 2016 at 1:43:28 AM UTC+11, slide wrote: > > Email-ext needs access to the workspace, so if you don't use it inside a >

Re: [Blue Ocean] A new user experience project for Jenkins

2016-12-08 Thread Michael Neale
Hi Utsav - yes sorry about that - it hasn't been implemented yet. There are a few tasks in progress that make this up: https://issues.jenkins-ci.org/secure/RapidBoard.jspa?rapidView=171=planning=JENKINS-40298=visible=JENKINS-38490 Some code has been merged to support some of this, but not

Re: 4 month old deleted branches still not removed

2017-06-20 Thread Michael Neale
iod of 0 > days. > > Is theirs enabled? > > Does it have the retention period they want? > > Mark Waite > > On Tue, Jun 20, 2017 at 7:59 PM Michael Neale <mne...@cloudbees.com > > wrote: > >> Using multibranch and git/github, I am seeing projects th

Re: 4 month old deleted branches still not removed

2017-06-20 Thread Michael Neale
and obviously you aren't seeing deleted branches still show up without being cleaned up? On Wednesday, June 21, 2017 at 12:23:59 PM UTC+10, Mark Waite wrote: > > Yes, that's how mine is configured. > > On Tue, Jun 20, 2017 at 8:21 PM Michael Neale <mne...@cloudbees.com > &

4 month old deleted branches still not removed

2017-06-20 Thread Michael Neale
Using multibranch and git/github, I am seeing projects that are created for a branch be apparently marked for deletion, but never removed. There is one that hasn't been around for 4 months and shows up like this:

Re: 4 month old deleted branches still not removed

2017-06-21 Thread Michael Neale
OK on looking further - MBPs created by classic don't have this set - which seems wrong - worthy of a ticket? Ones created by blue ocean do have it set (1 day, as it turns out) via the github org folder. So this explains it, but leaves the issue of the default for creation being wrong. to

Re: 4 month old deleted branches still not removed

2017-06-20 Thread Michael Neale
On Wednesday, June 21, 2017 at 3:50:06 PM UTC+10, Stephen Connolly wrote: > > > How often is a full scan? > Is that is from the scan log link - then not for 2 months or so. What triggers that? All the settings are stock. > > Orphaned items are only removed on a full scan. > > New items

Re: 4 month old deleted branches still not removed

2017-06-21 Thread Michael Neale
On Wednesday, June 21, 2017 at 4:19:58 PM UTC+10, Stephen Connolly wrote: > > > >> >> Periodic triggers >> >> you want "periodically unless otherwise run" to be something like once a >> day/week depending on how long you can handle a missed event (which should >> be unlikely) >> >> I recommend

Re: 4 month old deleted branches still not removed

2017-06-21 Thread Michael Neale
reading the docs for folders, perhaps there is a bug from a bad assumption. a github event will not trigger a scan like the author of the folders plugin implies so it still needs to have this set even for github On Wednesday, June 21, 2017 at 6:03:03 PM UTC+10, Michael Neale wrote: > &

Re: 4 month old deleted branches still not removed

2017-06-21 Thread Michael Neale
Mark do you have a scan interval set? Should the github events include removing of branch projects? as that doesn't seem to be happening lately (since a few months). On Wednesday, June 21, 2017 at 6:13:32 PM UTC+10, Stephen Connolly wrote: > > > > On 21 June 2017 at 00:19, Michae

Re: 4 month old deleted branches still not removed

2017-06-20 Thread Michael Neale
Wednesday, 21 June 2017 12:57:29 UTC+10, Mark Waite wrote: > > Correct. I have some test jobs which intentionally create and destroy > branches as part of their testing, and those branches correctly disappear > shortly after the branch deletion is detected. > > On Tue, Jun 20

Re: 4 month old deleted branches still not removed

2017-06-21 Thread Michael Neale
I think it is fine to expect some infrequent scanning - it probably needs to be the default though as otherwise people wire up a webhook - and end up never deleting branches. On Wednesday, June 21, 2017 at 6:49:02 PM UTC+10, Stephen Connolly wrote: > > On 21 June 2017 at 01:16, Michael

Re: GitHub and Bitbucket branch source UI refactoring

2017-06-22 Thread Michael Neale
It does look better now with the new version. I confirmed running a scan didn't make anything go away. On Thursday, June 22, 2017 at 3:20:37 PM UTC+10, Stephen Connolly wrote: > > > On Thu 22 Jun 2017 at 04:29, Michael Neale <mne...@cloudbees.com > > wrote: > >&g

Re: GitHub and Bitbucket branch source UI refactoring

2017-06-21 Thread Michael Neale
I saw all jobs disappear in a github org folder that blue ocean created previously, when I triggered a scan. (it also doesn't seem to trigger scans if I add change the pattern, or run the wizard again). On Thursday, June 22, 2017 at 4:39:30 AM UTC+10, Mark Waite wrote: > > I haven't tried it

Re: Can you mark one stage as "unstable"?

2017-06-26 Thread Michael Neale
No not yet - but it is an area of research and something being actively looked into. On Tuesday, June 27, 2017 at 1:56:40 PM UTC+10, Qiang wrote: > > Hi, all, > > In pipeline job, can I make one stage "unstable"? > If I set the currentBuild.result='UNSTABLE' , then the whole pipeline >

Re: GitHub and Bitbucket branch source UI refactoring

2017-06-26 Thread Michael Neale
to remove the "discover pull requests from [everywhere]" >> behaviors and select "Only branches that are also filed as PRs" on >> production as soon as possible. >> >> Michael Neale mentioned that one issue he had seen "does look better now >> with th

Re: Bitbucket push-hook freeze on git rev-list (for some users)

2018-02-07 Thread Michael Neale
This seems related to: https://issues.jenkins-ci.org/browse/JENKINS-43106 as myself and a few others were seeing the same thing with github specifically and git rev-list - so not specific to pipeline. The JIRA dependencies are *that* powerfully bad? On Wednesday, February 7, 2018 at 9:00:06

Re: Bitbucket push-hook freeze on git rev-list (for some users)

2018-02-08 Thread Michael Neale
in my environment, but I downgraded from > Jira plugin 2.5.1 to Jira plugin 2.5.0 shortly after seeing the discussions > about the possibility of blacklisting Jira plugin 2.5.1. > > Mark Waite > > On Wed, Feb 7, 2018 at 5:53 PM Michael Neale <mne...@cloudbees.com > > w

Re: Blue Ocean UI takes 20-30 min to load

2018-03-26 Thread Michael Neale
Fantastic, thanks for testing the beta, it was really a hard one to reproduce to great to have this confirmed. On Wednesday, March 21, 2018 at 6:14:41 PM UTC+11, Andrei Gheorghiu wrote: > > Hi Vivek, > > Thank you for the update. > We switched to the experimental branch on Jenkins plugins and

Re: GitHub webhooks, where to put smee client if Jenkins is in a container?

2019-11-10 Thread Michael Neale
gt; method: 'POST', path: '/github-webhook'},* > > Is there some other setup that is required on the Jenkins server to get > this to work? > I have a Jenkins LTS 2.190.2 server, with Blue Ocean, Pipeline, and many > other plugins installed. > > -- > Craig > &

Re: GitHub webhooks, where to put smee client if Jenkins is in a container?

2019-11-13 Thread Michael Neale
t;Powered by > Jetty:// 9.4.z-SNAPSHOT\n' +'\n' +'\n' + > '\n', method: 'POST', path: '/github-webook/'},* > > > So it looks like in order to access http://localhost:8080/github-webhook/ > , I need to pass some sort of authentication > in order

Re: GitHub webhooks, where to put smee client if Jenkins is in a container?

2019-10-24 Thread Michael Neale
Hi Craig, glad that post is getting mileage! So in kubernetes, I guess that would be adding to the pod that is running your Jenkins container: there would be a pod definition (not sure if you wrote it) somewhere, and you could cook up an image with smee running and have it as a "sidecar" next to

Re: GitHub webhooks, where to put smee client if Jenkins is in a container?

2019-10-24 Thread Michael Neale
es, and if I had two separate physical machines, > one running Jenkins and one running smee, > would it be possible for smee to interact with Jenkins via the REST API? > > -- > Craig > > On Thu, Oct 24, 2019 at 1:01 AM Michael Neale > wrote: > >> Hi Craig, glad that po

Re: GitHub webhooks, where to put smee client if Jenkins is in a container?

2019-10-24 Thread Michael Neale
to try using a service which may disappear. > -- > Craig > > On Thu, Oct 24, 2019 at 2:39 PM Michael Neale > wrote: > >> yeah fair point it doesn't have to be right next to it - but it has to be >> somewhere it can reach /github-webhook endpoint - so could be a totally &