Re: Jenkins2 BlueOcean loading jobs fails

2017-03-09 Thread GS_L
org/browse/JENKINS-40088>. Do you have any > exceptions in your Jenkins server log after clicking the "Show More" button? > > Thanks, > James > > On Monday, March 6, 2017 at 3:55:33 AM UTC-8, GS_L wrote: >> >> Hi >> I installed Jenkins 2.48 and blueOcea

Jenkins2 BlueOcean loading jobs fails

2017-03-06 Thread GS_L
Hi I installed Jenkins 2.48 and blueOcean beta plugin. When I press the 'show more' button it works only on the first time. Pressing the button the second time or more (to see all the jobs) the button is stuck on loading. It's look like the big amount of the jobs caused that. Is there a work arou

Pipeline send email to committer

2017-03-06 Thread GS_L
Hi How can I send e-mails to individuals who broke the build? This is my post mail code: post { failure { mail(from: "...", to: "...", subject: "UI build failed!", body: "For more information see the build log.") } } -- You received this mes

Re: Jenkins2 pileline poll scm

2017-03-06 Thread GS_L
Hi The triggers - pollscm doesn't work on the checkout step. I want that the pollscm will trigger a build in every push in - checkout([$class: 'GitSCM', branches: [[name: '*/master']], ... This didn't work for me: pipeline { triggers { pollSCM('*/5 * * * *') } agent { lab

Pass parmas from one stage to anohter

2017-03-06 Thread GS_L
Hi I read environment variables from file. The following works, but there is a code duplication: ( . ${JENKINS_HOME}/jobs/credentials.sh > /dev/null 2>&1 curl -u $GITHUB_USERNAME:$GITHUB_PASSWORD https://raw.githubusercontent.com/cloudify-cosmo/cloudify-premium/master/packages-urls/common_b

Hudson Personal View doesn't show jobs under folders

2016-12-20 Thread GS_L
My jobs are separated under Jenkins folders. When I enter - dir_prepare/.* in the filter edit box to display all the jobs under 'dir_prepare' folder no job is displayed. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this

Nodes that have a specific label - get 'swarm' label automatically after restarting Jenkins.

2016-09-07 Thread GS_L
I've create slaves by swarm plugin. In Manage Jenkins -> Manage Nodes I changed the label of the slave. After restarting the Jenkins master or slave the label 'swarm' is added to the labels list. How can I avoid that? -- You received this message because you are subscribed to the Google Groups

Re: inheritance-plugin child job error: 'Invalid parent reference to'

2016-03-27 Thread GS_L
fixed? On Saturday, March 26, 2016 at 12:06:10 AM UTC+3, GS_L wrote: > > Is someone can help with this issue? > > On Thursday, March 24, 2016 at 4:33:34 PM UTC+2, GS_L wrote: >> >> >> Hi >> I have created two inheritance parent jobs

Re: inheritance-plugin child job error: 'Invalid parent reference to'

2016-03-25 Thread GS_L
Is someone can help with this issue? On Thursday, March 24, 2016 at 4:33:34 PM UTC+2, GS_L wrote: > > > Hi > I have created two inheritance parent jobs named: > >- parent_install_crt >- parent_pull_plugins_repos > > Then created a child job that have two

inheritance-plugin child job error: 'Invalid parent reference to'

2016-03-24 Thread GS_L
Hi I have created two inheritance parent jobs named: - parent_install_crt - parent_pull_plugins_repos Then created a child job that have two ordered projects reference - the above jobs. The following error appears under each parent job: 'Project name can't be resolved to project of co

identify builds logs

2016-02-16 Thread GS_L
Hi I forwarding all my Jenkins jobs logs to logentries - to the same endpoint. When I search for a specific string in the logs - I get all the raws including the specific string of all logs, without knowing which log is it. Is there a way to add the job name for every log line? Thanks -- You

Re: Logentries Forwarder - Token

2016-02-01 Thread GS_L
not sure whether the above suggested post is related to this entry: > > > https://cloudbees.zendesk.com/hc/en-us/articles/203802500-Injecting-Secrets-into-Jenkins-Build-Jobs > > Which it might help you to set "secrets" globally and be able to use them > among different j

Re: git clone error

2016-01-31 Thread GS_L
lure On Wednesday, January 27, 2016 at 1:15:24 PM UTC+2, GS_L wrote: > > Thanks the "SCM checkout retry count" helped > > > On Wednesday, January 20, 2016 at 7:32:30 PM UTC+2, Klaus Schniedergers > wrote: >> >> If you're dealing with a flaky origin reposit

Re: git clone error

2016-01-27 Thread GS_L
value as you probably did it since the default timeout >>> is 10 minutes. Probably some networking latency issue in your system so you >>> can bypass it with a longer timeout. >>> >>> Cheers >>> >>> On Wednesday, 20 January 2016 08:44:31 UTC,

Nested parameters

2016-01-27 Thread GS_L
Hi I have a build flow job that uses the options "This build is parameterized". Is there a way to display nested parameters? The user need to select which plugin he wants to build checkbox plugin_1 checkbox plugin_2 checkbox plugin_3 checkbox plugin_4 checkbox plugin_5 for every checkbox th

Logentries Forwarder - Token

2016-01-26 Thread GS_L
Hi Is there a way to set the token as global secret param, so I can use it from several jobs? Thanks -- 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 jenkinsci

Re: git clone error

2016-01-20 Thread GS_L
at 10:18:29 AM UTC+2, Victor Martinez wrote: > > Correct me if I'm wrong but those log details are not enough, can you > attach your full console log? Probably there is something else after that > error in the stacktrace error output. It might be related to some timeout > issu

git clone error

2016-01-19 Thread GS_L
I'm using jenkins 1.631 on ubuntu 14.04, slaves installed also on ubuntu 14.04. I added git path to PATH env variable. git plugins: Git client plugin 1.19.1 Git plugin 2.4.1 GitHub API Plugin 1.71 GitHub plugin 1.14.2 Sometimes I get the following error: "ERROR: Error cloning remote repo 'origin

Re: Access BUILD_CAUSE and BUILD_CAUSE_USERIDCAUSE through Build Flow DSL

2015-11-01 Thread GS_L
e a System Groovy script as per > this stackoverflow answer <http://stackoverflow.com/a/29677752>. > > On Thursday, October 29, 2015 at 9:15:04 AM UTC-4, GS_L wrote: >> >> Hi >> >> To know who triggered a buildflow job I tried to print the BUILD_CAUSE

Access BUILD_CAUSE and BUILD_CAUSE_USERIDCAUSE through Build Flow DSL

2015-10-29 Thread GS_L
Hi To know who triggered a buildflow job I tried to print the BUILD_CAUSE env variable in the following ways: 1. println "BUILD_CAUSE = $BUILD_CAUSE" build failed - error: ERROR: Failed to run DSL Script groovy.lang.MissingPropertyException

Re: Pass parent workspace in build flow

2015-10-03 Thread GS_L
the downstream jobs. On Thursday, October 1, 2015 at 3:11:06 PM UTC+3, rginga wrote: > > I’m not sure “workspace” is a field of “build”. > > > > *From:* jenkins...@googlegroups.com [mailto: > jenkins...@googlegroups.com ] *On Behalf Of *GS_L > *Sent:* Thursday, Octobe

Pass parent workspace in build flow

2015-10-01 Thread GS_L
Hi I have a build flow that runs several builds. I want that all builds workspace will be under the parent workspace. I pass the parent workspace through DSL: The parent workspace is 'NightlyBuild'. build("job1", parent_workspace:build.workspace) In job1 - I changed the workspace by checking t