Vagrant Provision Error

2020-06-09 Thread kathir
PFA Vagrant file & script file Thanks & Regards, Kathirvel G On Tue, Jun 9, 2020 at 9:56 PM kathir wrote: > Hi > > I have kept my vagrant file and script file in git > > I have used vagrant & virtual box plugin > > but still I am not able to boot or provision VM > > Also I got following error

[no subject]

2020-06-09 Thread kathir
Hi I have kept my vagrant file and script file in git I have used vagrant & virtual box plugin but still I am not able to boot or provision VM Also I got following error [vagrantcentosubuntu] $ vagrant -v Vagrant 2.2.9 [ vagrant ]: Executing command :[vagrant, provision, Centos7,

Re: Question on email extension plugin in a pipeline step

2020-06-09 Thread Mario Jauvin
I did and it works. On Tuesday, June 9, 2020 at 2:40:44 PM UTC-4, slide wrote: > > You can set the classpath in the global configuration for email-ext. > > > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and

Re: Question on email extension plugin in a pipeline step

2020-06-09 Thread Slide
You can set the classpath in the global configuration for email-ext. On Tue, Jun 9, 2020 at 10:56 AM Mario Jauvin wrote: > What is the classpath setup at that moment? What do I have access to? > > On Tuesday, June 9, 2020 at 1:34:54 PM UTC-4, slide wrote: >> >> No, this scenario is not

Re: Question on email extension plugin in a pipeline step

2020-06-09 Thread Mario Jauvin
What is the classpath setup at that moment? What do I have access to? On Tuesday, June 9, 2020 at 1:34:54 PM UTC-4, slide wrote: > > No, this scenario is not currently supported. > > > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To

Re: Question on email extension plugin in a pipeline step

2020-06-09 Thread Slide
No, this scenario is not currently supported. On Tue, Jun 9, 2020 at 9:46 AM Mario Jauvin wrote: > I am trying to use groovy classes found in the pipeline shared library > (using @Library annotation on jenkinsfile) inside the presendScript string > supplied to the emailext pipeline step. These

Re: How to get "Changes Summary" into declarative pipeline?

2020-06-09 Thread Bruce Coveny
Hi Vitaly, Not sure if it helps but this is a Groovy script that I use to obtain the change details. Change details are not always available as it depends on pulling in a Git commit to obtain and sometimes (for instance rebuilding) it may not have those changes. I think what you are

Question on email extension plugin in a pipeline step

2020-06-09 Thread Mario Jauvin
I am trying to use groovy classes found in the pipeline shared library (using @Library annotation on jenkinsfile) inside the presendScript string supplied to the emailext pipeline step. These classes come from the src folder of the shared library (not the vars folder). I get

Re: java.io.NotSerializableException: java.lang.UNIXProcess

2020-06-09 Thread chencho m-a
You are right. Adding a lot of println debug lines I have realized that the error it was not at the piece of code I have posted here but other .execute() which whose output was not being consumed and it was blocking the flow. Thank you all for the tips. El martes, 9 de junio de 2020,

Re: java.io.NotSerializableException: java.lang.UNIXProcess

2020-06-09 Thread Devin Nusbaum
The method named `exists` from the first email is fine and does not have any problems. Adding @NonCPS to it is incorrect as explained here and causes the “expected to call Script4.exists but wound

How to get build ID effectively from remotely triggered builds.

2020-06-09 Thread Yoo JinSun
Hello Jenkins Community! Is there a way to reliably get the *build number* from a remotely triggered build? Here's the process I use to remotely trigger a build 1) POST a http request to trigger a build POST https://{hostname}/job/{job_name}/build 2) From the response's Location

Re: [JCasC] Integration with the plugin 'Micro Focus Application Automation Tools'

2020-06-09 Thread Alberto Scotto
Found it! https://github.com/jenkinsci/configuration-as-code-plugin/blob/master/docs/PLUGINS.md I'm gonna submit a PR to update the README with a link to that page. Il giorno martedì 26 maggio 2020 17:08:31 UTC+2, Alberto Scotto ha scritto: > > Hi, > > We are looking for a way to configure

How to get "Changes Summary" into declarative pipeline?

2020-06-09 Thread Vitaly Karasik
For each build in jenkins there is a page with a "Changes Summary" of what happened in that build. I guess the same is available in 'when' condition as 'changelog'. How I get the same text into my declarative pipeline? I found many examples using some plugins and scripts, but Jenkins core