git log master..hotfix/SFCC.1.11.0 --oneline | tail -1

2019-09-05 Thread SandeepM
git log master..hotfix/SFCC.1.11.0 --oneline | tail -1 ERROR: fatal: ambiguous argument 'master..hotfix/SFCC.1.11.0': unknown revision or path not in the working tree. Use '--' to separate paths from revisions, like this: 'git [...] -- [...]' When I executed above command through CLI it workin

Re: Under Jenkins SignTool Error "No certificates were found", works fine logged on as user

2019-09-05 Thread Mark Waite
Because the code signing tool requires interaction with the desktop, it requires that you must be logged in (or at least that is my theory). There are techniques to configure processes to run without being logged in, but they all tend to leave the process with no access to the desktop or limited a

Re: git log master..hotfix/SFCC.1.11.0 --oneline | tail -1

2019-09-05 Thread Mark Waite
Usually that message means that one or more of the names that you referenced in the 'git log' command is not defined in the workspace where the job is running. For example, a Jenkins workspace checkout as created by the git plugin ny has no named branches. It uses a "detached HEAD" rather than a b

Re: git log master..hotfix/SFCC.1.11.0 --oneline | tail -1

2019-09-05 Thread Sandeep muthyapu
Thank you so much for quick response , Can you please help me how to do it ...I means how to Enable Branch concept in jenkins.. On Thu, Sep 5, 2019 at 6:13 AM Mark Waite wrote: > Usually that message means that one or more of the names that you > referenced in the 'git log' command is not defin

Re: git log master..hotfix/SFCC.1.11.0 --oneline | tail -1

2019-09-05 Thread Mark Waite
On Thu, Sep 5, 2019 at 7:47 AM Sandeep muthyapu wrote: > Thank you so much for quick response , > Can you please help me how to do it ...I means how to Enable Branch > concept in jenkins.. > > In the "Additional behaviours" section of Freestyle jobs and the "Add" section for multibranch pipelines

Re: Post all the archive data from Jenkins in Confluence

2019-09-05 Thread sravan
Can anyone help me on this? On Wednesday, September 4, 2019 at 11:44:47 AM UTC-7, sravan wrote: > > I am also fine with posting the results on results on remote host > > On Wednesday, September 4, 2019 at 11:30:20 AM UTC-7, sravan wrote: >> >> Hi Guys, >> Is there a way to post the Jenkins results

Re: Under Jenkins SignTool Error "No certificates were found", works fine logged on as user

2019-09-05 Thread Chia-Yu Wu
OK , I understand now. Mark , thanks for your help. Mark Waite於 2019年9月5日星期四 UTC+8下午6時01分40秒寫道: > > Because the code signing tool requires interaction with the desktop, it > requires that you must be logged in (or at least that is my theory). There > are techniques to configure processes to run

Re: Post all the archive data from Jenkins in Confluence

2019-09-05 Thread Toni Van de Voorde
Hi Sravan, I'm not aware of any tool or plugin doing this. If that's the case, then you have following options: 1. create a jenkins plugin for your needs :) 2. write a little script that runs on your or some machine, which does what you want using jenkins and confluence api ... Optionally you cou