Re: CVS Plugin Adpotion

2021-05-24 Thread moritz...@gmail.com
Hi all, after releasing several bugfix- and security updates for the cvs-plugin I'm now no longer able to access a production CVS server anymore. I would still be able to perform releases (e.g. security fixes), but cannot test changes in a "real" environment, so these would be "blind" releases.

Re: GSoC 2021 - Please welcome Jenkins students!

2021-05-24 Thread Alyssa Tong
Welcome all to the Jenkins family ☺ On Thu, May 20, 2021 at 2:55 PM Oleg Nenashev wrote: > Recording of the Jenkins community bonding kick-off on May 19, 2021: > https://youtu.be/5nR2eNa8HbQ. We discussed the project selection results, > thanked all participants, discussed next steps and the

Re: Problems with env variable

2021-05-24 Thread yusuf zainee
Basically, Im not able to alter the value in the path env variable. One way is to have a new field where in the user can pass the desired path value and then i pick that value and use it in my java files. But im sure there is a more elegant solution for this. On Mon, 24 May, 2021, 20:42 yusuf

Re: [workflow-durable-task-step-plugin] Add tool installer for Powershell Core

2021-05-24 Thread Jesse Glick
On Fri, May 21, 2021 at 5:51 PM Tim Van Holder wrote: > PowerShell Core is multi-platform and installable via zip or tarball. > As such, I'd be inclined to want to add a tool installer for it > The `ToolInstallation` system is generally deprecated. Modern CI setups are expected to use VMs or

Problems with env variable

2021-05-24 Thread yusuf zainee
Hi, I'm facing a problem wrt the PATH env variable. 1. In pipeline, i have a script, pipeline { agent { label 'master' } environment { PATH="/usr/local/bin:$PATH" } stages { stage ('build') { steps { echo "PATH=$PATH"