Console Output cut short / missing

2019-04-16 Thread Andy Coates
Hey, Anyone seen any setting or issue with a plugin that would cut the console output short? e.g. *13:44:27* PLAY [foo] **13:44:27* *13:44:27* TASK [bar : Ensure the version is installed]

Re: shell inside a groovy script doesnt resolve variables ?

2019-04-16 Thread Jan Monterrubio
You might need to set up that variable as an environment variable for the shell to recognize it https://jenkins.io/doc/pipeline/tour/environment https://stackoverflow.com/a/40718201 On Tue, Apr 16, 2019 at 15:23 b o b i wrote: > I cannot make the executed shell to resolve a predefined

Unable to open a JIRA issue

2019-04-16 Thread Stuart Rowe
I'm having the same issue. Perhaps this should be cross posted to the Jenkins Developers group as well? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Unable to open a JIRA issue

2019-04-16 Thread Eric Pyle
I've tried several times today to create an issue on issues.jenkins-ci.org. Each time I try, I fill out the "Create Issue" dialog, and click "Create", I get an error. It says: We can't create this issue for you right now, it could be due to unsupported content you've entered into one or more

Specify build Name using REST API while triggering build

2019-04-16 Thread Aritra Ghosh
Hi all, I am looking for a way to trigger a build using the buildNow while specifying the build name instead of #1,#2 etc. Is there any way i can do this? Thanks Aritra -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe

Jenkins job fail after few successful run requiring Jenkins boot

2019-04-16 Thread Rahul Burman
I have a few pipeline jobs configured on a Jenkins instance running on HP Nonstop. After a few runs the jobs suddenly start failing with the following error. The only workaround that has worked for me is to reboot Jenkins. And then the job run properly with no other changes required. Can you

Jenkins - CasC Config

2019-04-16 Thread Ricardo Carvalho
Hello, I'm an enthusiastic beginner devops developer and i try to install jenkins through helm chart. I was successful in installing Jenkins but i want my CasC configs inside folders, not inside the yaml file. Do you know some way to instead have the entire Casc configuration in the same yaml

shell inside a groovy script doesnt resolve variables ?

2019-04-16 Thread b o b i
I cannot make the executed shell to resolve a predefined variable in my jenkins script.. I tried various syntax approaches w/o succcess. .. Anybody could give me a hand? String workspace String addOn = "Path/To/Cmake.cmake" node ('slave01') { workspace = pwd() String addOnAbsPath =

Re: How to use cached Docker images in a Jenkins slave?

2019-04-16 Thread ZillaYT
Yeah we build our own AMIs via Packer. I'll looking into pulling the images into it. Thanks. Chris On Tuesday, April 16, 2019 at 11:30:11 AM UTC-4, kuisathaverat wrote: > > You do not need to change anything there, you would need custom ECS AMIs > where you have pre-pull the Docker images that

Re: How to use cached Docker images in a Jenkins slave?

2019-04-16 Thread kuisathaverat
You do not need to change anything there, you would need custom ECS AMIs where you have pre-pull the Docker images that you will need, see https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html El mar., 16 abr. 2019 a las 17:14, ZillaYT () escribió: > So what values

Re: How to use cached Docker images in a Jenkins slave?

2019-04-16 Thread ZillaYT
So what values do you put in your cloud section of you Jenkins config page for the 'Task definition' and 'Docker image' fields? [image: Screen Shot 2019-04-16 at 11.05.13 AM.png] On Friday, April 5, 2019 at 2:21:10 PM UTC-4, Ivan Fernandez Calvo wrote: > > We have a similar problem, to make

Re: How to pass one of the jobs output value to the next job input in pipeline script

2019-04-16 Thread ZillaYT
Say you want JobA to trigger JobB On JobA's pipeline code do build job: JobB, parameters: [string(name: 'PARAMETER_NAME', value: 'PARAMETER_VALUE')], wait: false The 'wait' parameter indicates if you want JobB to finish before JobA does (true), or JobA to finish even before JobB does (false).

Plugin for NEW failures between builds

2019-04-16 Thread ABostonGal ABostonGal
I'm looking for a plugin that would create a report of only NEW failures between builds. In other words, if there were three builds (three being the last build), the report should tell me about only about new failures between builds 2 and 3, not things that failed between builds 1 and 2. ?

How to pass one of the jobs output value to the next job input in pipeline script

2019-04-16 Thread pbasanta2002
Hi All, I have a pipeline script job and is triggering Jobs. The requirement here is to pass one of the jobs output value to the next job . 1.How to get the value from job to the Pipeline job. 2.From Pipeline how to pass that values to the next job. Regards, Basanta -- You received this