Logo usage request

2019-07-17 Thread martinda
On behalf of the Jenkins GSoC Org Admin Team, I am requesting permission to use the Jenkins Logo, and the name "Jenkins" for printing on a poster to display at the community booth at Jenkins World. The Jenkins Logo will be accompanied on the same poster by the GSoC, the GSoD and the Outreachy

Jenkins CI Windows node failed on release - should I be concerned?

2019-07-17 Thread Mez Pahlan
Hi again. I'm probably worrying about nothing but this looked strange to me. https://ci.jenkins.io/blue/organizations/jenkins/Plugins%2Fappcenter-plugin/activity/ During a release:prepare release:perform maven will request two builds from the CI server due to two commits to master. The first

Re: Increasing the bus factor on the security team

2019-07-17 Thread Matt Sicker
Hooray for a well done release! On Wed, Jul 17, 2019 at 10:48 AM Daniel Beck wrote: > > > > > On 14. Jun 2019, at 15:38, Daniel Beck wrote: > > > > Hi everyone, > > > > "Security advisory day" as (acting) security officer is… interesting. I > > touch many parts of the Jenkins project

Re: Keep Build Forever interface listing disappears with plugin on legacy Jenkins

2019-07-17 Thread 'Benjamin Beggs' via Jenkins Developers
Terrific, thank you. I didn't search the change logs well enough. On Wednesday, July 17, 2019 at 1:52:01 PM UTC-4, Daniel Beck wrote: > > > > > On 16. Jul 2019, at 22:53, 'Benjamin Beggs' via Jenkins Developers < > jenkin...@googlegroups.com > wrote: > > > > Does anyone have an idea why? > >

Re: Keep Build Forever interface listing disappears with plugin on legacy Jenkins

2019-07-17 Thread Daniel Beck
> On 16. Jul 2019, at 22:53, 'Benjamin Beggs' via Jenkins Developers > wrote: > > Does anyone have an idea why? Why not just check the changelog? > What's new in 2.14 (2016/07/17) > > • Allow keeping builds forever with custom build retention strategies. > (issue 26438) -- You

Re: Keep Build Forever interface listing disappears with plugin on legacy Jenkins

2019-07-17 Thread 'Benjamin Beggs' via Jenkins Developers
The plugin is set to be used on some Legacy Jenkins instances running at 1.651.3 and up, it performs as expected sans this interface difference. It's possible that debugging this compatibility issue is a rabbit hole not worth pursuing, we'll see. On Tuesday, July 16, 2019 at 5:06:14 PM UTC-4,

Re: Library(JollyDay)'s properties file cannot be found by WebAppClassLoader in Jenkins runtime.

2019-07-17 Thread Tim Jacomb
This should hopefully explain it for you: https://jenkins.io/doc/developer/plugin-development/dependencies-and-class-loading/ Thanks Tim On Wed, 17 Jul 2019 at 15:32, Jack Shen wrote: > Link to the issue in Jira: > https://issues.jenkins-ci.org/browse/JENKINS-58530 > > > I'm trying to use

Re: [EVENT]: DevOps World Jenkins World San Francisco volunteers needed

2019-07-17 Thread martinda
Alyssa, I prepared a poster to promote Google Summer of Code, Google Season of Docs and Outreachy for Jenkins World in SF. https://github.com/martinda/jenkins-gsoc-gsod-outreachy-poster Questions: - Should I print on canvas or paper? - Is there a budget for the community booth for this

Re: Increasing the bus factor on the security team

2019-07-17 Thread Daniel Beck
> On 14. Jun 2019, at 15:38, Daniel Beck wrote: > > Hi everyone, > > "Security advisory day" as (acting) security officer is… interesting. I touch > many parts of the Jenkins project infrastructure to ensure that releases and > the advisory go out in a timely manner. It's basically an hour

Library(JollyDay)'s properties file cannot be found by WebAppClassLoader in Jenkins runtime.

2019-07-17 Thread Jack Shen
Link to the issue in Jira: https://issues.jenkins-ci.org/browse/JENKINS-58530 I'm trying to use [*JollyDay* |https://github.com/svendiedrichsen/jollyday]to provide ability to get holidays, but its day-calculate algorithm is based on some .porperties file(typically Jollyday.properties).

Library(JollyDay)'s properties file cannot be found by WebAppClassLoader in Jenkins runtime.

2019-07-17 Thread Jack Shen
I'm trying to use [*JollyDay* |https://github.com/svendiedrichsen/jollyday]to provide ability to get holidays, but its day-calculate algorithm is based on some .porperties file(typically Jollyday.properties). These files can be found in running unit test, but when running it in jenkins,

Re: How to trace the debug breakpoints when job running any slave?

2019-07-17 Thread Boyka Zhu
Hi Pierre, You tips work for me. Change suspend to y to start the agent, it will hold the listening at 8765 as I set, then start the remote java application with my remote host name and 8765 port, then the agent started. Backup to eclipse, create some breakpoints which the sources codes will

Re: JNLP : Error: Invalid or corrupt jarfile agent.jar

2019-07-17 Thread Mark Waite
Maybe a virus scanner is damaging the file during download? On Wed, Jul 17, 2019, 3:29 AM Mathieu Delrocq wrote: > Hello, > > My problem is when try to launch the command "java -jar agent.jar ... " to > connect my Jenkins agent via JNLP, I got the error "Error: Invalid or > corrupt jarfile

Re: How to trace the debug breakpoints when job running any slave?

2019-07-17 Thread Pierre BEITZ
Hello Boyka You're currently not attaching a debugger to the agent VM. Currently you have one debugger attached to the master JVM, but none to the agent JVM. I'm not familiar with Eclipse itself but basically you want to create a Remote configuration that will attach to the agent VM (on port

JNLP : Error: Invalid or corrupt jarfile agent.jar

2019-07-17 Thread Mathieu Delrocq
Hello, My problem is when try to launch the command "java -jar agent.jar ... " to connect my Jenkins agent via JNLP, I got the error "Error: Invalid or corrupt jarfile agent.jar". I download agent.jar with a command "curl". My Jenkins is launched with the war (java -jar jenkins.war) and I

Re: How to trace the debug breakpoints when job running any slave?

2019-07-17 Thread Boyka Zhu
Hi Ullrich, In the remote host, I use below command to start the agent. java -jar -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8765 agent.jar -jnlpUrl http://myjenkinshost:8080/jenkins/computer/hostname123.dev.com/slave-agent.jnlp -workDir "/home/boyka/JenkinsDev" >From