Re: Pipeline PATH problems (seems related to JENKINS-41339)

2017-06-18 Thread Andreas Magnusson
Managed to find something on stackoverflow which pointed me in the right direction. Apparently we had a really OLD override to PATH defined in our System configuration which I didn't know about. Removing that fixed the problem. Perhaps the plugin writing out the error could give a short hint

Pipeline PATH problems (seems related to JENKINS-41339)

2017-06-18 Thread Andreas Magnusson
After an upgrade of my Jenkins installation (2.65 and all plugins updated) I cannot for my life get the 'sh' command to work. This is my mini example: node('linux') { sh 'echo $PATH' } and this is the output: Started by user anonymous [Pipeline]

Re: Does URLTrigger work with Gerrit URL changes(new patch submitted)?

2017-06-18 Thread Yinyin Xiao
add the versions info: Jenkins: 2.46.3 URLTrigger Plug-in: 0.41 -- 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

Does URLTrigger work with Gerrit URL changes(new patch submitted)?

2017-06-18 Thread Yinyin Xiao
Hi, Is it possible to inspect the Gerrit changes by URLTrigger Plugin? URL like "http://gerrit.xxx.com/#/q/status:merged+branch:master; I tried this plugin to Inspect URL content of Jenkins lastSuccessfulBuild which works fine, but it never work for Gerrit changes, did I miss something?

Re: Jenkins 2.9, multi-branch pipeline, 2 git source repositories, scanning problem.

2017-06-18 Thread D.D.
Hi Stephen, thank you for detailed explanation! Yes, we have one common upstream parent code base in that project. With the effort I described, we thought to create a few downstream forks, each one for a "variation" of functionality, but build each version of all variations with just one

Multiple plots, defined by CSV files

2017-06-18 Thread Simon Richter
Hi, I'd like to set up a translation status page for a project, with statistics and graphs for translated, "fuzzy" and untranslated strings. The build generates CSV files of the format lang;translated;fuzzy;untranslated ca;10;20;30 de;60;; en;50;;10 etc. The list of languages is not fixed, as

Re: GitHub and Bitbucket branch source UI refactoring

2017-06-18 Thread Michael Kobit
I may be able to help with this as well. On Fri, Jun 16, 2017, 17:28 Dan Tran wrote: > I will give it a spin too. > > Thanks > > -Dan > > On Friday, June 16, 2017 at 11:57:26 AM UTC-7, Kevin Burnett wrote: >> >> we'd be down to try that, yes. thanks for making these changes

how to get hold of stage level console log file for parsing?

2017-06-18 Thread Qiang
Hi, all, There are a few plugins to get console log files at the end of a pipeline job to parse (with patterns and so forth). For pipeline jobs, is there a way to get console output at stage level? So that I can process it at end of the stage in a smaller scope. Looks like internally, each

Re: Growing config.xml with GitLab plugin

2017-06-18 Thread Qiang
Thanks! I updated the plugin(s), now it is working! On Sunday, June 18, 2017 at 7:51:32 AM UTC-5, Andrew Bayer wrote: > > You only specifically need to upgrade Pipeline: Model Definition. > > A. > > On Fri, Jun 16, 2017 at 10:30 AM Qiang > wrote: > >> Hi, Dan , Thanks for

Re: Growing config.xml with GitLab plugin

2017-06-18 Thread Andrew Bayer
You only specifically need to upgrade Pipeline: Model Definition. A. On Fri, Jun 16, 2017 at 10:30 AM Qiang wrote: > Hi, Dan , Thanks for the hint, and I did find the job recreatd by job DSL > didn't have the problem > > Hi, Andrew, thanks for the good news! Do we just

Re: Fastest way to git tag in a Jenkinsfile?

2017-06-18 Thread Idan Adar
I eventually used the following to accomplish my goal: https://stackoverflow.com/questions/44612496/bash-variable-escaping-in-a-jenkinsfile#44612844 Still looking forward to changes in "checkout"! -- You received this message because you are subscribed to the Google Groups "Jenkins Users"