Re: Lost all views after upgrading from 2.73.3 to 2.107.3

2019-03-27 Thread Roshan Chandekar
Hi Aditya, Thank you so much for your reply as i am struggling from last 15 days and this is first time i reported my issue on Jenkins blog. I will explain how i am upgrading first. I downloaded the 2.138 war and restarted Jenkins. is it correct way to upgrade? OR do i need to first upgrade al

How to use the saveOutput option of emailext plugin in a pipeline

2019-03-27 Thread Oxygen
Hi, The emailext plugin has a option saveOutput to save the email body to a file, I want to use this plugin with this option in a pipeline, what is the parameter name passed to the call in a pipeline? I tried the following call, but it didn't work, no file is saved under the workspace. emaile

Re: How to use the saveOutput option of emailext plugin in a pipeline

2019-03-27 Thread Victor Martinez
It should be stored in the root path of the workspace, according to the docs: https://github.com/jenkinsci/email-ext-plugin/blob/master/src/main/webapp/help/projectConfig/saveOutput.html#L3 The name of the file would be -.html, further details about the implementation: - https://github.com/jen

Re: Get the status of a particular stage in a previous build, in a Jenkinsfile

2019-03-27 Thread Slide
I have done this using the following code, but was told that this may not work in future versions: @NonCPS def getLastJobInfo(build) { def res = null try { if(build.previousBuild != null) { def resp = httpRequest(quiet: true, url: "${env.BUILD_URL}/${ build.previousBuild.id}/wfapi/de

Jenkins job description empty

2019-03-27 Thread federico lerda
Hi, How can I avoid to create jenkins jobs with the empty job description? Something like the naming strategy. Thanks -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscr

Re: location of email-ext template file

2019-03-27 Thread kalkin powale
Hi, I am using groovy scripts and I use this command after adding my template here config-file-provider plugin. and it worked fine. body: '''${SCRIPT, template="managed:custom_groovy_Email.groovy"}''', On Monday, 18 June 2018 09:04:02 UTC+2, Mani Agnihotri wrote: > > Hi, > > I know this is old

Monitoring a Jenkins instance from a mobile device

2019-03-27 Thread Afifa Bakiz
Hello, We, at MobiLab Solutions , would like to have your feedback about our Jenkins Client for Android and iOS

Frequent screen refrest (30sec) of pipeline job - LTS 164.1

2019-03-27 Thread Dan Tran
Hello I wonder if anyone has seen this issue after upgrade to latest LTS. The screen refreshes even when no build running. Very annoying :-) Thanks -D -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: How to clone a directory from a remote repo in a Jenkins pipeline script?

2019-03-27 Thread Haibrayn González
>From CLI you can git checkout -- path/to/subdir/ just that you would need to be in the repository so maybe clone an empty branch or the first commit of the repo instead of the large repo branch and then checkout the files from CLI El miércoles, 31 de mayo de 2017, 13:36:19 (UTC-5), Stephen

Re: How to clone a directory from a remote repo in a Jenkins pipeline script?

2019-03-27 Thread Haibrayn González
Check out the snippet for git: checkout and try the sparse checkout advanced option checkout changelog: false, poll: false, scm: [ $class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [ [ $class: 'SparseCheckoutPa

Re: Monitoring a Jenkins instance from a mobile device

2019-03-27 Thread Szczepan Zaskalski
Can you add a feature with list of last failed builds and Notify everytime when any build is failed? On Wednesday, March 27, 2019 at 3:58:06 PM UTC+1, Afifa Bakiz wrote: > > Hello, > > We, at MobiLab Solutions , would like to > have your feedback about our Jenkins

Re: Jenkins upgrade from 2.73.3 to 2.138 deleted all views

2019-03-27 Thread Mark Waite
Those warnings seem to indicate that you'll need to update plugins. When you update the plugins to latest versions, does that help? On Tue, Mar 26, 2019 at 10:38 PM Roshan Chandekar < roshan786.chande...@gmail.com> wrote: > Hi Mark, > > I am really glad after seeing your response to my issue. >

Re: How to use the saveOutput option of emailext plugin in a pipeline

2019-03-27 Thread Jinlxz Liu
Hi Victor, I checked the workspace after the pipeline job was executed, but there was no html file under it. I added some loggers to capture the logs of emailext plugin and executed the plugin again, I received the email, but no output was captured for the logger, the configuration is as follows: