Re: Plugin Dev & RequireUpperBoundDeps

2024-06-07 Thread Bryan Stopp
TY - I just stumbled on this myself as I kept digging. - Stopp On Fri, Jun 7, 2024 at 12:37 PM Basil Crow wrote: > See https://github.com/jenkinsci/bom/issues/3098. > > -- > You received this message because you are subscribed to a topic in the > Google Groups "Jenkins Developers" group. > To

Plugin Dev & RequireUpperBoundDeps

2024-06-07 Thread Bryan Stopp
I'm trying to update one of my plugins and something odd is going on with the Jenkins BOMs I tested this by creating a new plugin using the tutorial (https://www.jenkins.io/doc/developer/tutorial/create/) Then I added one dependency that my actual plugin needs: org.jenkins-ci.plugins

Re: GetStatic Jelly Tag

2023-12-07 Thread Bryan Stopp
Thanks Daniel & Jesse. I didn't see the referenced ticket - it is what I'm seeing. I'll update to use a reference rather than the taglib. -B On Thu, Dec 7, 2023 at 12:54 PM 'Jesse Glick' via Jenkins Developers < jenkinsci-dev@googlegroups.com> wrote: > On Thu, Dec 7, 2023 at 1

GetStatic Jelly Tag

2023-12-07 Thread Bryan Stopp
(Caveat: I'm making the assumption here that the classloader functions the same when running stand-alone vs mvn hpi:run) This seems to only function on Jenkins class-loader context. It does not find my packages/classes in my plugin for referencing static values. Is this the intended behavior,

Config list of simple strings?

2023-10-24 Thread Bryan Stopp
Hello All, I'm trying to create a jelly config for a UI element that allow for storing a list of strings of arbitrary length. I have tried every combination of f.entry & f.repeatableHeteroProperty that i can think of. The header and "add" buttons show up, but no input field for the adding a

Re: [jenkins-infra] Re: Missing Version Installation Count

2022-03-23 Thread Bryan Stopp
I don't suppose there's any way to control the detailed output from a config in my project? For example, drop all the 1.x installs? -Stopp On Wednesday, March 23, 2022 at 9:27:15 AM UTC-5 Bryan Stopp wrote: > Thanks! When i sent the question it still wasn't showing. Now i see it. > >

Re: [jenkins-infra] Re: Missing Version Installation Count

2022-03-23 Thread Bryan Stopp
> like it's not synced automatically: > https://github.com/jenkins-infra/infra-statistics/pull/47 > > The stats page now shows it: > https://stats.jenkins.io/pluginversions/adobe-cloud-manager.html > > Thanks > Tim > > On Tue, 15 Mar 2022 at 16:38, Bryan

Re: [jenkins-infra] Re: Missing Version Installation Count

2022-03-15 Thread Bryan Stopp
run from? I found 2 jobs on trusted ci for it. >>>>>> >>>>>> 1 hadn't been run since 2018 and was disabled, I've deleted it >>>>>> I found another one here: >>>>>> https://trusted.ci.jenkins.io:1443/job/Infrastructure/job/infra

Missing Version Installation Count

2021-08-05 Thread Bryan Stopp
Does the "Detailed Version Installation" information on a plugin not know how to report non-semantic versions? My plugin page shows 32 installs, but the detailed info only says 20. https://plugins.jenkins.io/adobe-cloud-manager/ Anyone know? -B -- You received this message because you are

Subset of EnumSet - Jelly

2021-06-15 Thread Bryan Stopp
I'm trying to configure the helper Pipeline Syntax for a step. The input is a to a list of items. The items come from a Java Enum. If i use an *f:enumSet*, no matter how I configure/return out of the default value in the Step, it always uses *every* value of the enumeration. But I want a

Re: Restart ci.jenkins.io Run

2021-06-15 Thread Bryan Stopp
ow long have you been seeing > it? > > On Fri, 11 Jun 2021 at 01:16, Bryan Stopp wrote: > >> Yeah - basically i have to monitor the runs on a merge to main because if >> i don't and it fails, i can't re-run. Which defeats the whole idea of CD :( >> >&g

Re: Restart ci.jenkins.io Run

2021-06-10 Thread Bryan Stopp
20:41, Tim Jacomb wrote: > >> You should be able to run it from the page for the master build =/ >> >> This is what I see on a plugin I have with CD enabled: >> >> [image: image.png] >> >> On Wed, 9 Jun 2021 at 17:51, Bryan Stopp wrote: >> >>>

Re: Restart ci.jenkins.io Run

2021-06-09 Thread Bryan Stopp
download dependencies) -Stopp On Sunday, June 6, 2021 at 11:43:12 AM UTC-5 timja...@gmail.com wrote: > There’s a button on the actions page once you click on CD for re-run all > jobs > > On Sun, 6 Jun 2021 at 15:56, Bryan Stopp wrote: > >> Tried this. There is no re-ru

Re: Restart ci.jenkins.io Run

2021-06-06 Thread Bryan Stopp
checks page > People with write access can click re-run from there > > On Sun, 6 Jun 2021 at 04:22, Bryan Stopp wrote: > >> >> How does one restart a build on the Jenkins CI system? I have been >> getting failures due to the build being unable to download artifacts from &g

Restart ci.jenkins.io Run

2021-06-05 Thread Bryan Stopp
How does one restart a build on the Jenkins CI system? I have been getting failures due to the build being unable to download artifacts from the Jenkins repo. Specifically one of my CD release builds failed this way and i have no idea how to boot it again without doing another push to the

Re: Windows Tests failing on Timeout

2021-06-04 Thread Bryan Stopp
nit4/xref/org/junit/internal/runners/statements/FailOnTimeout.html >>> The timeout is set in the Builder object. >>> You may be suffering from a Windows process create time issue. I assume >>> you are running this on the Jenkins server itself and it has to restart

Re: Windows Tests failing on Timeout

2021-06-04 Thread Bryan Stopp
Follow-up: I found a way to extend the timeout for a test (WithTimout annotation), and bumped it up to 5 minutes. However, it does not solve the issues. Any help is much appreciated. -Stopp On Friday, June 4, 2021 at 11:24:48 AM UTC-5 Bryan Stopp wrote: > Hello all, > > Looking

Windows Tests failing on Timeout

2021-06-04 Thread Bryan Stopp
Hello all, Looking for some advice/help here. I've added a bunch of tests for my plugin, but it seems that on Windows I get random failures of my restart test cases. It doesn't happen during the Linux runs. Essentially I'm validating that my custom steps come up clean from a reboot and then

Updating Plugin framework to support Java11?

2021-05-27 Thread Bryan Stopp
Was looking at updating my plugin to only build using Java11 and output Java11 bytecode. But when I went to use 11 as the value of *java.level* in my pom, it broke due to the plugins not understanding Java target of "1.11" (because its supposed to be just "11"). Is there a plan to

Blue Ocean/Pipeline Graph Display

2021-05-12 Thread Bryan Stopp
What's the right way for a *Step/StepExecution* to provide custom content to display on the Blue Ocean dashboard? Is it just logging information out to the TaskListener log? Does that display each *println* in its own collapsible row, or will all Step's logging be written to one collapsible

Re: ScheduledFutures and Cancelling?

2021-04-27 Thread Bryan Stopp
-manager-plugin/blob/860f54a3ed9914939e339b04a1664fd21d85cf49/src/main/java/io/jenkins/plugins/adobe/cloudmanager/step/PollPipelineStep.java#L139-L156 Grateful for any pointers and/or criticism. Thanks! -B On Tue, Apr 27, 2021 at 9:44 AM Jesse Glick wrote: > On Mon, Apr 26, 2021 at 11:04 PM Bryan Stopp > wrote:

ScheduledFutures and Cancelling?

2021-04-26 Thread Bryan Stopp
When writing a custom step that creates a scheduled task, are you responsible for calling the "cancel()" method before/after you call "onSuccess/onFailure" I'm getting an error: completed: already completed CpsStepContext after my timer has called the onSuccess method, so I assume i'm not

Build Action API

2014-06-28 Thread Bryan Stopp
Is there a way to execute a specific action on a build, via the API? For example, using a system groovy script, how would one kick off the Tag this build action? I can access the build I want to tag. I know how to schedule a build. However if i call the schedule build passing the tag action,