Re: How to use proxy socks with Jenkins

2015-12-01 Thread Christopher Orr
>From the example on the wiki page, you add them as Java options:

  java -D -D -jar jenkins.war


You don't mention which OS or Jenkins package you're using, or how you
modified the startup script, so it's hard to give specific info.

But on Debian, you would modify JAVA_ARGS in /etc/default/jenkins, and
JENKINS_JAVA_OPTIONS in /etc/sysconfig/jenkins for the RPM package.

There's some more info to be found on the wiki here:
https://wiki.jenkins-ci.org/display/JENKINS/Use+Jenkins#UseJenkins-RunningJenkinsasadaemon

Regards,
Chris


On 30/11/15 10:55, donovan.bailey2...@gmail.com wrote:
> Thanks but where do you specify the socks proxy settings? Can this be
> added to the jenkins startup script? I have tried but the process
> doesn't start so i am clearly putting it in the wrong place. Has anyone
> got this successfully working?
> 
> 
> On Friday, 27 November 2015 23:52:58 UTC, Christopher Orr wrote:
> 
> It should work if you use the regular Java proxy properties:
> https://wiki.jenkins-ci.org/display/JENKINS/JenkinsBehindProxy
> 
> 
> i.e. "socksProxyHost" and co:
> 
> https://docs.oracle.com/javase/7/docs/api/java/net/doc-files/net-properties.html
> 
> 
> 
> 
> Regards,
> Chris
> 
> 
> On 27/11/15 12:34, donovan.b...@gmail.com  wrote:
> > Hi, i have installed Jenkins inside our corporate network. I would
> like
> > to SSH to Github to pull down code but i can't work out how to
> configure
> > Jenkins to use socks proxy 5 instead of a normal http proxy. We
> can only
> > SSH outside if we use a socks proxy. Is it a system wide change or a
> > change we need to make in Jenkins?
> >
> > --
> > 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-use...@googlegroups.com 
> > .
> > To view this discussion on the web visit
> >
> 
> https://groups.google.com/d/msgid/jenkinsci-users/573d3825-290d-47dc-af47-bea8591f1606%40googlegroups.com
> 
> 
> 
> >
> 
>  
> >.
> 
> > For more options, visit https://groups.google.com/d/optout
> .
> 
> -- 
> 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-users+unsubscr...@googlegroups.com
> .
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/f4059e21-db64-4214-bc4f-b252862a2801%40googlegroups.com
> .
> For more options, visit https://groups.google.com/d/optout.

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/565E3FF7.9040507%40orr.me.uk.
For more options, visit https://groups.google.com/d/optout.


Large Multi Configuration Project, Paginate Status Page?

2015-12-01 Thread Stephen G
I have a new multi configuration project that is very large (10,000+ 
configurations).

The status page takes too long to load, is slow, etc. I'm suspecting that 
the 10,000 JavaScript calls that it's making overload the system just a bit.

Is there a way to paginate the status page? Custom status page plugin? Any 
other advice? Thanks,

Stephen

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7113ada0-6ea5-491b-9b88-7f3ff483d72a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Build flow "build" function doesn't return a build object if FAILED or UNSTABLE

2015-12-01 Thread Christopher Orr
Hi there,

On 01/12/15 14:17, Valeriy Leykin wrote:
> I'm using the build flow in my jobs and I would like to get any build
> result from build object even if the build is failed or unstable.

I haven't used Build Flow, but I would guess that this is a basic
scoping problem.

BUILD_TO_RETURN is defined in the "try" block, which means it's not
visible outside of that block, i.e. it won't exist and so returns `null`
when the "catch" block tries to access it.

Try defining your variable before the "try" block:

  def BUILD_TO_RETURN
  try {
BUILD_TO_RETURN = build(...)
  } catch (...) {
...
  }

Regards,
Chris

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/565E3E1E.2050208%40orr.me.uk.
For more options, visit https://groups.google.com/d/optout.


Re: Get API token using API

2015-12-01 Thread Christopher Orr
On 30/11/15 16:51, cchap...@kinaxis.com wrote:
> Is it possible to get the API token using the API after authenticating
> with the users real password?

No, user API tokens are not exposed via the API.

Regards,
Chris

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/565E3BA5.80201%40orr.me.uk.
For more options, visit https://groups.google.com/d/optout.


Re: android-x86 or Genymotion emulators with Jenkins

2015-12-01 Thread Christopher Orr
Genymotion emulators should automatically become available via adb, so
you shouldn't have to do any special setup.

If not, you can get the IP address of the emulator via the Genymotion
shell (I believe the shell command is "devices list"), and then run `adb
connect $IP`.


On 01/12/15 14:36, Kirshan Luhana wrote:
> Greetings
> 
> did anyone tried android-x86 genymotion emulators with Jenkins, who do
> you connect and get console output ?
> 
> 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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/565E3454.2030101%40orr.me.uk.
For more options, visit https://groups.google.com/d/optout.


Re: disable disk usage calculation

2015-12-01 Thread Andrew Bayer
Nope, it's free - CloudBees is just claiming some credit. =)

On Tuesday, December 1, 2015, Indra Gunawan (ingunawa) 
wrote:

> This is not a free plugin I presume.  CloudBee Simple Disk Usage Plugin?
>
> From:  > on
> behalf of Andrew Bayer  >
> Reply-To: "jenkinsci-users@googlegroups.com
> " <
> jenkinsci-users@googlegroups.com
> >
> Date: Tuesday, December 1, 2015 at 12:47 PM
> To: "jenkinsci-users@googlegroups.com
> " <
> jenkinsci-users@googlegroups.com
> >
> Subject: Re: disable disk usage calculation
>
> Yeah, I tried hacking it to not do that, and, well, it either kept doing
> it or just didn't work. I haven't actually played with
> https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Simple+Disk+Usage+Plugin
> yet, but I believe it's intended to address a lot of the performance
> problems with the disk usage plugin.
>
> A.
>
> On Tue, Dec 1, 2015 at 3:45 PM, Indra Gunawan (ingunawa) <
> ingun...@cisco.com >
> wrote:
>
>> Then uninstall the disk-usage plugin.  I do not think it is possible to
>> disable calculation after every build completes.
>>
>> From: > > on
>> behalf of "lvoty...@redhat.com
>> " <
>> lvoty...@redhat.com 
>> >
>> Reply-To: "jenkinsci-users@googlegroups.com
>> " <
>> jenkinsci-users@googlegroups.com
>> >
>> Date: Monday, November 30, 2015 at 11:20 AM
>> To: "jenkinsci-users@googlegroups.com
>> " <
>> jenkinsci-users@googlegroups.com
>> >
>> Subject: Re: disable disk usage calculation
>>
>> Hi,
>> there is no configuration which disable calculation of builds after
>> build. This is for periodic recalculation. Please why you want to disable
>> it? It is because of some bug - there was an issue that calculation at the
>> end of build was problematic when build starts another build. If it is that
>> case, newer version should contains calculation like a post build step
>> (which cancel calculation called after build step which starts another
>> build of some job).
>>
>> On Thursday, November 12, 2015 at 11:08:20 PM UTC+1, jhavero wrote:
>>>
>>> I'm running Jenkins 1.616 and disk usage plugin 0.25.
>>> I would like to disable disk usage calculations after each build so I
>>> uncheck the "Enable calculation of ..." options from System Configuration
>>> however the disk space calculations are still happening.
>>>
>> --
>> 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-users+unsubscr...@googlegroups.com
>> 
>> .
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jenkinsci-users/c920f339-9a41-43ed-9c37-1ce96f753050%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>> --
>> 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-users+unsubscr...@googlegroups.com
>> 
>> .
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jenkinsci-users/D28346AF.3B9EE%25ingunawa%40cisco.com
>> .
>>
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> 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-users+unsubscr...@googlegroups.com
> 
> .
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/CAPbPdOa9TFWh99PbubRRQAuXbs1Y8nmRUxUB7dyJtjOfXnkSgw%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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-users+unsubscr...@googlegroups.com
> 
> .
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/D2836A01.3BB6C%25ingunawa%40cisco.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/m

Re: disable disk usage calculation

2015-12-01 Thread Indra Gunawan (ingunawa)
This is not a free plugin I presume.  CloudBee Simple Disk Usage Plugin?

From: 
mailto:jenkinsci-users@googlegroups.com>> on 
behalf of Andrew Bayer mailto:andrew.ba...@gmail.com>>
Reply-To: 
"jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Date: Tuesday, December 1, 2015 at 12:47 PM
To: "jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Subject: Re: disable disk usage calculation

Yeah, I tried hacking it to not do that, and, well, it either kept doing it or 
just didn't work. I haven't actually played with 
https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Simple+Disk+Usage+Plugin 
yet, but I believe it's intended to address a lot of the performance problems 
with the disk usage plugin.

A.

On Tue, Dec 1, 2015 at 3:45 PM, Indra Gunawan (ingunawa) 
mailto:ingun...@cisco.com>> wrote:
Then uninstall the disk-usage plugin.  I do not think it is possible to disable 
calculation after every build completes.

From: 
mailto:jenkinsci-users@googlegroups.com>> on 
behalf of "lvoty...@redhat.com" 
mailto:lvoty...@redhat.com>>
Reply-To: 
"jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Date: Monday, November 30, 2015 at 11:20 AM
To: "jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Subject: Re: disable disk usage calculation

Hi,
there is no configuration which disable calculation of builds after build. This 
is for periodic recalculation. Please why you want to disable it? It is because 
of some bug - there was an issue that calculation at the end of build was 
problematic when build starts another build. If it is that case, newer version 
should contains calculation like a post build step (which cancel calculation 
called after build step which starts another build of some job).

On Thursday, November 12, 2015 at 11:08:20 PM UTC+1, jhavero wrote:
I'm running Jenkins 1.616 and disk usage plugin 0.25.
I would like to disable disk usage calculations after each build so I uncheck 
the "Enable calculation of ..." options from System Configuration however the 
disk space calculations are still happening.

--
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c920f339-9a41-43ed-9c37-1ce96f753050%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/D28346AF.3B9EE%25ingunawa%40cisco.com.

For more options, visit https://groups.google.com/d/optout.


--
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPbPdOa9TFWh99PbubRRQAuXbs1Y8nmRUxUB7dyJtjOfXnkSgw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/D2836A01.3BB6C%25ingunawa%40cisco.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins job

2015-12-01 Thread GBANE FETIGUE
Hi buddy 

I need ideas about a jenkins job that I want to create . I have the idea 
but I don't really know where to get started. 
I have a web app displaying server status. and whenever the status is good 
the results is " like a boss" which mean positive and when is bad it 
displays " horrible" which is negative. 
I want to create a job for that. any ideas about how it should be written. 
I want to mention that the app on the server is nodejs application. 

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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/9aeb280f-cf56-4a38-b0e3-7b1e7a1da3f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to run/execute few tests of a job on multiple nodes in jenkins

2015-12-01 Thread Amit Mehrotra
HI,

Is there a way to load balance the tests which we have in a job in Jenkins. 
Suppose a job is supposed to run 6 tests on 3 nodes, is there a way that we 
can run 2 tests each at the same time on each node. For e.g Tests are - 
A,B, C, D,E,F 

Nodes are - 1,2,3

Can we some how run tests A,B on node 1 tests C,D on node 2 and tests E,F 
on node 3 or any 2 tests on any node at the same time so that all the 3 
nodes are being utilized effectively at the same time.

Any help would be highly appreciated.

Thanks, 

Amit

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/d09ecdb7-a083-491e-8c46-547df4caa4ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: disable disk usage calculation

2015-12-01 Thread Andrew Bayer
Yeah, I tried hacking it to not do that, and, well, it either kept doing it
or just didn't work. I haven't actually played with
https://wiki.jenkins-ci.org/display/JENKINS/CloudBees+Simple+Disk+Usage+Plugin
yet, but I believe it's intended to address a lot of the performance
problems with the disk usage plugin.

A.

On Tue, Dec 1, 2015 at 3:45 PM, Indra Gunawan (ingunawa)  wrote:

> Then uninstall the disk-usage plugin.  I do not think it is possible to
> disable calculation after every build completes.
>
> From:  on behalf of "lvoty...@redhat.com"
> 
> Reply-To: "jenkinsci-users@googlegroups.com" <
> jenkinsci-users@googlegroups.com>
> Date: Monday, November 30, 2015 at 11:20 AM
> To: "jenkinsci-users@googlegroups.com" 
> Subject: Re: disable disk usage calculation
>
> Hi,
> there is no configuration which disable calculation of builds after build.
> This is for periodic recalculation. Please why you want to disable it? It
> is because of some bug - there was an issue that calculation at the end of
> build was problematic when build starts another build. If it is that case,
> newer version should contains calculation like a post build step (which
> cancel calculation called after build step which starts another build of
> some job).
>
> On Thursday, November 12, 2015 at 11:08:20 PM UTC+1, jhavero wrote:
>>
>> I'm running Jenkins 1.616 and disk usage plugin 0.25.
>> I would like to disable disk usage calculations after each build so I
>> uncheck the "Enable calculation of ..." options from System Configuration
>> however the disk space calculations are still happening.
>>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/c920f339-9a41-43ed-9c37-1ce96f753050%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/D28346AF.3B9EE%25ingunawa%40cisco.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPbPdOa9TFWh99PbubRRQAuXbs1Y8nmRUxUB7dyJtjOfXnkSgw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: disable disk usage calculation

2015-12-01 Thread Indra Gunawan (ingunawa)
Then uninstall the disk-usage plugin.  I do not think it is possible to disable 
calculation after every build completes.

From: 
mailto:jenkinsci-users@googlegroups.com>> on 
behalf of "lvoty...@redhat.com" 
mailto:lvoty...@redhat.com>>
Reply-To: 
"jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Date: Monday, November 30, 2015 at 11:20 AM
To: "jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Subject: Re: disable disk usage calculation

Hi,
there is no configuration which disable calculation of builds after build. This 
is for periodic recalculation. Please why you want to disable it? It is because 
of some bug - there was an issue that calculation at the end of build was 
problematic when build starts another build. If it is that case, newer version 
should contains calculation like a post build step (which cancel calculation 
called after build step which starts another build of some job).

On Thursday, November 12, 2015 at 11:08:20 PM UTC+1, jhavero wrote:
I'm running Jenkins 1.616 and disk usage plugin 0.25.
I would like to disable disk usage calculations after each build so I uncheck 
the "Enable calculation of ..." options from System Configuration however the 
disk space calculations are still happening.

--
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c920f339-9a41-43ed-9c37-1ce96f753050%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/D28346AF.3B9EE%25ingunawa%40cisco.com.
For more options, visit https://groups.google.com/d/optout.


Re: I can get Jenkins installed on a server integrated with a GitHub Enterprise (GHE) server

2015-12-01 Thread Indra Gunawan (ingunawa)
https://wiki.jenkins-ci.org/display/JENKINS/LTS+Release+Line

The “LTS” is Long Term Support Release version.  It is a stable release version.

From: 
mailto:jenkinsci-users@googlegroups.com>> on 
behalf of Maria Victoria Martinez Torino 
mailto:victoriamartineztor...@gmail.com>>
Reply-To: 
"jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Date: Tuesday, December 1, 2015 at 12:04 PM
To: "jenkinsci-users@googlegroups.com" 
mailto:jenkinsci-users@googlegroups.com>>
Subject: Re: I can get Jenkins installed on a server integrated with a GitHub 
Enterprise (GHE) server

What do you mean by "LTS" version?

On Tue, Dec 1, 2015 at 1:14 PM Mark Waite 
mailto:mark.earl.wa...@gmail.com>> wrote:
One more item, I don't recall ever seeing a username/password pair work with an 
ssh authenticated repository access through the plugin.  The syntax 
"git@servername:reponame" requires a private key.  If you need to provide 
username/password, then I think you'll need to use either http or https 
protocol.

The ssh protocol can prompt for username and password, but as far as I can 
tell, the plugin doesn't support that authentication method for ssh URLs.

Mark Waite

On Tue, Dec 1, 2015 at 8:23 AM Mark Waite 
mailto:mark.earl.wa...@gmail.com>> wrote:

I'm surprised you're using the weekly build of Jenkins with a purchased source 
control system.  You may want to consider the LTS version instead.

The message "could not init" might indicate a permissions problem with the /tmp 
directory.  It might indicate a problem with your configuration of fit inside 
Jenkins.  It might indicate that your file system is full.

Mark Waite

On Tue, Dec 1, 2015, 6:43 AM Maria Victoria Martinez Torino 
mailto:victoriamartineztor...@gmail.com>> 
wrote:

Hi,
We are trying to integrate Jenkins v1.639 installed and running on a Linux 
server with a GitHub Enterprise server.
We have installed the following plugins installed on Jenkins (with the 
corresponding versions):

[https://lh3.googleusercontent.com/-L7WIYJbvd4Q/Vl2fKOsAjAI/AXw/yHDGy7RByeU/s320/GitHub%2BPlugin%2BConfiguration.png]
  *   GIT client plugin 1.19.0
  *   GIT plugin 2.4.0
  *   GitHub API Plugin 1.69
  *   Github Authentication plugin 0.22.2
  *   GitHub plugin 1.14.0

The first issue I detected is that I am not able to select the three scopes 
required by the GitHub Plugin configuration. However I am not sure if that is 
really affecting the plugin configuration (see image attached to this topic)...


The second issue I ran into was when creating a free style project. On the 
GitHub project field, I put the clone of my GHE repo in SSH format: git@:/.git/.
[https://lh3.googleusercontent.com/-TNGUWa9f1Dg/Vl2iK24LE-I/AYE/MKOYwnQEQxg/s320/Source%2BCode%2BMgmt%2B-%2BGit%2Brepository%2B-%2Berror%2Bafter%2Bsetting%2Bthe%2BRepository%2BURL.png]On
 the Source Code Management section, I chose "Git" and on the On the Repository 
URL field, I put again the clone of my GHE repo in SSH format: git@:/.git/ and on the Credentials 
field, I set my GHE user and password. However, I got an error on screen which 
I cannot understand (see related image attached to this topic)

And if I set the Repository URL in HTTPS format, i got this other error message 
on screen: Failed to connect to repository : Could not init 
/tmp/hudson7841613613764140579tmp





Did any of you go through this kind of problems? Have you been able to solve 
them?
I will appreciate any kind of feedback.
thanks,
Vicky

--
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/3cb58298-8355-486f-b3e1-7651c01654f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to a topic in the Google 
Groups "Jenkins Users" group.
To unsubscribe from this topic, visit 
https://groups.google.com/d/topic/jenkinsci-users/j4vnUeaT6vs/unsubscribe.
To unsubscribe from this group and all its topics, send an email to 
jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.goog

Re: I can get Jenkins installed on a server integrated with a GitHub Enterprise (GHE) server

2015-12-01 Thread Maria Victoria Martinez Torino
What do you mean by "LTS" version?

On Tue, Dec 1, 2015 at 1:14 PM Mark Waite  wrote:

> One more item, I don't recall ever seeing a username/password pair work
> with an ssh authenticated repository access through the plugin.  The syntax
> "git@servername:reponame" requires a private key.  If you need to provide
> username/password, then I think you'll need to use either http or https
> protocol.
>
> The ssh protocol can prompt for username and password, but as far as I can
> tell, the plugin doesn't support that authentication method for ssh URLs.
>
> Mark Waite
>
> On Tue, Dec 1, 2015 at 8:23 AM Mark Waite 
> wrote:
>
>> I'm surprised you're using the weekly build of Jenkins with a purchased
>> source control system.  You may want to consider the LTS version instead.
>>
>> The message "could not init" might indicate a permissions problem with
>> the /tmp directory.  It might indicate a problem with your configuration of
>> fit inside Jenkins.  It might indicate that your file system is full.
>>
>> Mark Waite
>>
>> On Tue, Dec 1, 2015, 6:43 AM Maria Victoria Martinez Torino <
>> victoriamartineztor...@gmail.com> wrote:
>>
>>> Hi,
>>> We are trying to integrate Jenkins v1.639 installed and running on a
>>> Linux server with a GitHub Enterprise server.
>>> We have installed the following plugins installed on Jenkins (with the
>>> corresponding versions):
>>>
>>>
>>>
>>> 
>>>- GIT client plugin 1.19.0
>>>- GIT plugin 2.4.0
>>>- GitHub API Plugin 1.69
>>>- Github Authentication plugin 0.22.2
>>>- GitHub plugin 1.14.0
>>>
>>> The first issue I detected is that I am not able to select the three
>>> scopes required by the GitHub Plugin configuration. However I am not sure
>>> if that is really affecting the plugin configuration (see image attached to
>>> this topic)...
>>>
>>>
>>> The second issue I ran into was when creating a free style project. On
>>> the* GitHub project *field, I put the clone of my GHE repo in SSH
>>> format: *git@:/>> repository>.git/*.
>>>
>>> On
>>> the *Source Code Management* section, I chose "*Git*" and on the On the*
>>> Repository URL *field, I put again the clone of my GHE repo in SSH
>>> format: *git@:/>> repository>.git/ *and on the *Credentials *field, I set my GHE user and
>>> password. However, I got an error on screen which I cannot understand (see
>>> related image attached to this topic)
>>>
>>> And if I set the Repository URL in HTTPS format, i got this other error
>>> message on screen:
>>>
>>>
>>>
>>>
>>>
>>>
>>> *Failed to connect to repository : Could not init
>>> /tmp/hudson7841613613764140579tmpDid any of you go through this kind of
>>> problems? Have you been able to solve them?*I will appreciate any kind
>>> of feedback.
>>> thanks,
>>> Vicky
>>>
>>> --
>>> 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-users+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/jenkinsci-users/3cb58298-8355-486f-b3e1-7651c01654f1%40googlegroups.com
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/jenkinsci-users/j4vnUeaT6vs/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtE4%3Dhk1OXp9qpZbjXPmw896tpcb4tHX1qGXV7tR4U0kkg%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAFvcHYPp%3DpWJ%2BO5QN2h_1nEdKojbgK4YFV4hcQO0NZni9%2BZxbw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Request for participation: Jenkins Security Officer candidates

2015-12-01 Thread R. Tyler Croy

I neglected to send an update this past week but the board has appointed Daniel
Beck as the Jenkins Security Officer for the next 12 months.

See 


On Tue, 10 Nov 2015, R. Tyler Croy wrote:

> 
> Based on the team lead proposal
> (https://wiki.jenkins-ci.org/display/JENKINS/Proposal+-+Project+sub-teams)
> which was approved in the governance meeting last month, I asking on behalf of
> the Jenkins board[0], for candidates who are willing to act as the Jenkins
> Security Officer.
> 
> 
> The responsibilities of the Jenkins Security Officer would be to lead Jenkins
> Security (CERT) team, and:
> 
> * Run the Jenkins CERT meeting
> * Manage sending gifts to qualifying reporters of resolved security issues [1]
> * Coordinate work on, and releases, of security fixes with plugin authors,
>   Kohsuke and the LTS team lead
> * Publish Security Advisories (including CVE IDs and CVSS) and notify the 
> mailing
>   list
> * Drive security policy definition/changes in the community
> * Represent the Jenkins project on security topics with third parties
> 
> 
> The expected term of the Security Officer would be 12 months.
> 
> 
> 
> Contributors interested in being considered for the Jenkins Security Officer
> position should email the board: jenkinsci-bo...@googlegroups.com in the *next
> seven days* explaining their qualifications for the position.
> 
> In seven days the board will select a candidate to appoint to the position who
> will be able to act on behalf of the Governance Board on matters pertaining to
> the position described above
> 
> 
> 
> [0] The current board: 
> 
> [1] 
> https://wiki.jenkins-ci.org/display/JENKINS/Rewards+for+reporting+security+issues
> 
> 
> Cheers
> - R. Tyler Croy
> 
> --
>  Code: 
>   Chatter: 
> 
>   % gpg --keyserver keys.gnupg.net --recv-key 3F51E16F
> --
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Jenkins Developers" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to jenkinsci-dev+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-dev/20151110214157.GF23766%40blackberry.coupleofllamas.com.
> For more options, visit https://groups.google.com/d/optout.



- R. Tyler Croy

--
 Code: 
  Chatter: 

  % gpg --keyserver keys.gnupg.net --recv-key 3F51E16F
--

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/20151201165934.GB23766%40blackberry.coupleofllamas.com.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: Digital signature


Re: Request for participation: Jenkins Security Officer candidates

2015-12-01 Thread Oleg Nenashev
Just read this e-mail.
 Congrats to Daniel!

среда, 11 ноября 2015 г., 0:43:19 UTC+3 пользователь R Tyler Croy написал:
>
>
> Based on the team lead proposal 
> (https://wiki.jenkins-ci.org/display/JENKINS/Proposal+-+Project+sub-teams) 
>
> which was approved in the governance meeting last month, I asking on 
> behalf of 
> the Jenkins board[0], for candidates who are willing to act as the Jenkins 
> Security Officer. 
>
>
> The responsibilities of the Jenkins Security Officer would be to lead 
> Jenkins 
> Security (CERT) team, and: 
>
> * Run the Jenkins CERT meeting 
> * Manage sending gifts to qualifying reporters of resolved security issues 
> [1] 
> * Coordinate work on, and releases, of security fixes with plugin authors, 
>   Kohsuke and the LTS team lead 
> * Publish Security Advisories (including CVE IDs and CVSS) and notify the 
> mailing 
>   list 
> * Drive security policy definition/changes in the community 
> * Represent the Jenkins project on security topics with third parties 
>
>
> The expected term of the Security Officer would be 12 months. 
>
>
>
> Contributors interested in being considered for the Jenkins Security 
> Officer 
> position should email the board: jenkins...@googlegroups.com  
> in the *next 
> seven days* explaining their qualifications for the position. 
>
> In seven days the board will select a candidate to appoint to the position 
> who 
> will be able to act on behalf of the Governance Board on matters 
> pertaining to 
> the position described above 
>
>
>
> [0] The current board: <
> https://wiki.jenkins-ci.org/display/JENKINS/Governance+Board> 
> [1] 
> https://wiki.jenkins-ci.org/display/JENKINS/Rewards+for+reporting+security+issues
>  
>
>
> Cheers 
> - R. Tyler Croy 
>
> -- 
>  Code:  
>   Chatter:  
>
>   % gpg --keyserver keys.gnupg.net --recv-key 3F51E16F 
> -- 
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/0b495db8-effb-4cd0-909b-3b5f34b87036%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I can get Jenkins installed on a server integrated with a GitHub Enterprise (GHE) server

2015-12-01 Thread Mark Waite
One more item, I don't recall ever seeing a username/password pair work
with an ssh authenticated repository access through the plugin.  The syntax
"git@servername:reponame" requires a private key.  If you need to provide
username/password, then I think you'll need to use either http or https
protocol.

The ssh protocol can prompt for username and password, but as far as I can
tell, the plugin doesn't support that authentication method for ssh URLs.

Mark Waite

On Tue, Dec 1, 2015 at 8:23 AM Mark Waite  wrote:

> I'm surprised you're using the weekly build of Jenkins with a purchased
> source control system.  You may want to consider the LTS version instead.
>
> The message "could not init" might indicate a permissions problem with the
> /tmp directory.  It might indicate a problem with your configuration of fit
> inside Jenkins.  It might indicate that your file system is full.
>
> Mark Waite
>
> On Tue, Dec 1, 2015, 6:43 AM Maria Victoria Martinez Torino <
> victoriamartineztor...@gmail.com> wrote:
>
>> Hi,
>> We are trying to integrate Jenkins v1.639 installed and running on a
>> Linux server with a GitHub Enterprise server.
>> We have installed the following plugins installed on Jenkins (with the
>> corresponding versions):
>>
>>
>>
>> 
>>- GIT client plugin 1.19.0
>>- GIT plugin 2.4.0
>>- GitHub API Plugin 1.69
>>- Github Authentication plugin 0.22.2
>>- GitHub plugin 1.14.0
>>
>> The first issue I detected is that I am not able to select the three
>> scopes required by the GitHub Plugin configuration. However I am not sure
>> if that is really affecting the plugin configuration (see image attached to
>> this topic)...
>>
>>
>> The second issue I ran into was when creating a free style project. On the*
>> GitHub project *field, I put the clone of my GHE repo in SSH format: 
>> *git@> server>:/.git/*.
>>
>> On
>> the *Source Code Management* section, I chose "*Git*" and on the On the*
>> Repository URL *field, I put again the clone of my GHE repo in SSH
>> format: *git@:/.git/
>> *and on the *Credentials *field, I set my GHE user and password.
>> However, I got an error on screen which I cannot understand (see related
>> image attached to this topic)
>>
>> And if I set the Repository URL in HTTPS format, i got this other error
>> message on screen:
>>
>>
>>
>>
>>
>>
>> *Failed to connect to repository : Could not init
>> /tmp/hudson7841613613764140579tmpDid any of you go through this kind of
>> problems? Have you been able to solve them?*I will appreciate any kind
>> of feedback.
>> thanks,
>> Vicky
>>
>> --
>> 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-users+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jenkinsci-users/3cb58298-8355-486f-b3e1-7651c01654f1%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtE4%3Dhk1OXp9qpZbjXPmw896tpcb4tHX1qGXV7tR4U0kkg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Commit hook causes not respecting choice parameter defaults

2015-12-01 Thread Daniel Beck
No, it's a bug. Its fix is waiting to be merged (Git Plugin PR 356).

On 01.12.2015, at 10:54, Dave Save  wrote:

> Hi everyone, first time question.
> 
> I noticed that builds originating from git commit 
> (BUILD_CAUSE=COMMITHOOKCAUSE) have none of the choice parameters defaults.
> 
> Is that normal behavior?
> 
> Thanks,
> Dave
> 
> 
> 
> 
> -- 
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/ea74e052-1b27-464f-988b-aa8ad86d4d2c%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7699DC8D-E12D-43A6-8944-18DB908E6916%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: I can get Jenkins installed on a server integrated with a GitHub Enterprise (GHE) server

2015-12-01 Thread Mark Waite
I'm surprised you're using the weekly build of Jenkins with a purchased
source control system.  You may want to consider the LTS version instead.

The message "could not init" might indicate a permissions problem with the
/tmp directory.  It might indicate a problem with your configuration of fit
inside Jenkins.  It might indicate that your file system is full.

Mark Waite

On Tue, Dec 1, 2015, 6:43 AM Maria Victoria Martinez Torino <
victoriamartineztor...@gmail.com> wrote:

> Hi,
> We are trying to integrate Jenkins v1.639 installed and running on a Linux
> server with a GitHub Enterprise server.
> We have installed the following plugins installed on Jenkins (with the
> corresponding versions):
>
>
>
> 
>- GIT client plugin 1.19.0
>- GIT plugin 2.4.0
>- GitHub API Plugin 1.69
>- Github Authentication plugin 0.22.2
>- GitHub plugin 1.14.0
>
> The first issue I detected is that I am not able to select the three
> scopes required by the GitHub Plugin configuration. However I am not sure
> if that is really affecting the plugin configuration (see image attached to
> this topic)...
>
>
> The second issue I ran into was when creating a free style project. On the*
> GitHub project *field, I put the clone of my GHE repo in SSH format: *git@ server>:/.git/*.
>
> On
> the *Source Code Management* section, I chose "*Git*" and on the On the*
> Repository URL *field, I put again the clone of my GHE repo in SSH
> format: *git@:/.git/ *and
> on the *Credentials *field, I set my GHE user and password. However, I
> got an error on screen which I cannot understand (see related image
> attached to this topic)
>
> And if I set the Repository URL in HTTPS format, i got this other error
> message on screen:
>
>
>
>
>
>
> *Failed to connect to repository : Could not init
> /tmp/hudson7841613613764140579tmpDid any of you go through this kind of
> problems? Have you been able to solve them?*I will appreciate any kind of
> feedback.
> thanks,
> Vicky
>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/3cb58298-8355-486f-b3e1-7651c01654f1%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtGb7gMho%2BPEMWNBDJMj2Er1tsvjLcKrnoBaioE9XUxUTw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Need help in android base open source project

2015-12-01 Thread Kirshan Kumar
Thanks,

I am sorry for short text, here is details

We are using Jenkins 1.611,Plugin mainly github,  android emulator, Gradle,
system LMDE 17.2 , Oracle JDK 8, NVidia GPU , latest android SDK

Problem is
On different API levels we are getting different test fails or if we run
with same API two three jobs at once , we are getting different fails
see few fails.
it is problematic that if we remove problematic test then another test
shows same behavior, can be said random fails.

Before upgrading jenkins (which is running other jobs fine) we wish to run
this project some where to know if our system has problem or code is nasty.

Please let me know if you need any further information.
I can send you job configuration and project url to test.



*19:59:02* junit.framework.AssertionFailedError: Text string:
'testLook1' is not found!*19:59:02* at
com.robotium.solo.Clicker.clickOnText(Clicker.java:447)*19:59:02*   at
com.robotium.solo.Solo.clickOnText(Solo.java:1095)*19:59:02*at
org.catrobat.catroid.uitest.content.brick.SetLookBrickTest.selectLook(SetLookBrickTest.java:234)*19:59:02*
at 
org.catrobat.catroid.uitest.content.brick.SetLookBrickTest.testAdapterUpdateInScriptActivity(SetLookBrickTest.java:190)*19:59:02*
at java.lang.reflect.Method.invokeNative(Native Method)*19:59:02*   
at
android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:214)*19:59:02*
at 
android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:199)*19:59:02*
at 
android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:192)*19:59:02*
at 
org.catrobat.catroid.uitest.util.BaseActivityInstrumentationTestCase.runBare(BaseActivityInstrumentationTestCase.java:137)*19:59:02*
at 
android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:191)*19:59:02*
at 
android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:176)*19:59:02*
at 
android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:554)*19:59:02*
at 
android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1701)*20:02:23*
.*20:02:48*
org.catrobat.catroid.uitest.content.brick.SetSizeToBrickTest:*20:02:48*
Failure in testSetSizeToBrick:*20:02:48*
junit.framework.AssertionFailedError: Text string: 'Preview' is not
found!*20:02:48*at
com.robotium.solo.Clicker.clickOnText(Clicker.java:447)*20:02:48*   at
com.robotium.solo.Solo.clickOnText(Solo.java:1095)*20:02:48*at
org.catrobat.catroid.uitest.content.brick.SetSizeToBrickTest.testSetSizeToBrick(SetSizeToBrickTest.java:106)*20:02:48*
at java.lang.reflect.Method.invokeNative(Native Method)*20:02:48*   
at
android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:214)*20:02:48*
at 
android.test.InstrumentationTestCase.runTest(InstrumentationTestCase.java:199)*20:02:48*
at 
android.test.ActivityInstrumentationTestCase2.runTest(ActivityInstrumentationTestCase2.java:192)*20:02:48*
at 
org.catrobat.catroid.uitest.util.BaseActivityInstrumentationTestCase.runBare(BaseActivityInstrumentationTestCase.java:137)*20:02:48*
at 
android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:191)*20:02:48*
at 
android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:176)*20:02:48*
at 
android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:554)*20:02:48*
at 
android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1701)





On Tue, Dec 1, 2015 at 3:18 PM, Victor Martinez <
victormartinezru...@gmail.com> wrote:

> You need to elaborate a bit more your issue (what errors exactly you get,
> what version of jenkins you use (plugins, os...), whether it works locally,
> where your project is based
>
> Cheers
>
> On Tuesday, 1 December 2015 14:41:20 UTC+1, Kirshan Luhana wrote:
>>
>> Hi
>> We are maintaining one Android base application for promoting education.
>> currently we are facing one big problem that some test fails (Random ) with
>> error description list not fount, text not found etc. we tried lot to
>> reflector code but as they were running fine before bug, it sense less to
>> reflector all tests.
>>
>> I wish to request you if someone can try running tests, project on his /
>> her machine Jenkins and see if he is also getting errors- We tried to
>> install many times Linux base server but always get errors / fails-
>>
>>
>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/jenkinsci-users/qWg90zqbn6w/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/7250a1b2-a94b-40d3-a4b9-3517378c419d%40goog

Re: Need help in android base open source project

2015-12-01 Thread Victor Martinez
You need to elaborate a bit more your issue (what errors exactly you get, 
what version of jenkins you use (plugins, os...), whether it works locally, 
where your project is based

Cheers

On Tuesday, 1 December 2015 14:41:20 UTC+1, Kirshan Luhana wrote:
>
> Hi
> We are maintaining one Android base application for promoting education. 
> currently we are facing one big problem that some test fails (Random ) with 
> error description list not fount, text not found etc. we tried lot to 
> reflector code but as they were running fine before bug, it sense less to 
> reflector all tests.
>
> I wish to request you if someone can try running tests, project on his / 
> her machine Jenkins and see if he is also getting errors- We tried to 
> install many times Linux base server but always get errors / fails- 
>
>
>
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7250a1b2-a94b-40d3-a4b9-3517378c419d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I can get Jenkins installed on a server integrated with a GitHub Enterprise (GHE) server

2015-12-01 Thread Maria Victoria Martinez Torino


Hi,
We are trying to integrate Jenkins v1.639 installed and running on a Linux 
server with a GitHub Enterprise server.
We have installed the following plugins installed on Jenkins (with the 
corresponding versions):

   
   

   - GIT client plugin 1.19.0
   - GIT plugin 2.4.0
   - GitHub API Plugin 1.69 
   - Github Authentication plugin 0.22.2
   - GitHub plugin 1.14.0

The first issue I detected is that I am not able to select the three scopes 
required by the GitHub Plugin configuration. However I am not sure if that 
is really affecting the plugin configuration (see image attached to this 
topic)... 


The second issue I ran into was when creating a free style project. On the* 
GitHub project *field, I put the clone of my GHE repo in SSH format: *git@:/.git/*.
On
 
the *Source Code Management* section, I chose "*Git*" and on the On the* 
Repository URL *field, I put again the clone of my GHE repo in SSH format: 
*git@:/.git/ *and on the *Credentials 
*field, I set my GHE user and password. However, I got an error on screen 
which I cannot understand (see related image attached to this topic)

And if I set the Repository URL in HTTPS format, i got this other error 
message on screen: 






*Failed to connect to repository : Could not init 
/tmp/hudson7841613613764140579tmpDid any of you go through this kind of 
problems? Have you been able to solve them?*I will appreciate any kind of 
feedback.
thanks,
Vicky

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/3cb58298-8355-486f-b3e1-7651c01654f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Need help in android base open source project

2015-12-01 Thread Kirshan Luhana
Hi
We are maintaining one Android base application for promoting education. 
currently we are facing one big problem that some test fails (Random ) with 
error description list not fount, text not found etc. we tried lot to 
reflector code but as they were running fine before bug, it sense less to 
reflector all tests.

I wish to request you if someone can try running tests, project on his / 
her machine Jenkins and see if he is also getting errors- We tried to 
install many times Linux base server but always get errors / fails- 



-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/ad7a07b1-d5e9-4ae0-94c1-30e58105df10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


android-x86 or Genymotion emulators with Jenkins

2015-12-01 Thread Kirshan Luhana
Greetings

did anyone tried android-x86 genymotion emulators with Jenkins, who do you 
connect and get console output ?

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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6b7ba135-36d0-462d-a844-aa099fff54d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Build flow "build" function doesn't return a build object if FAILED or UNSTABLE

2015-12-01 Thread Valeriy Leykin
Hi,

I'm using the build flow in my jobs and I would like to get any build 
result from build object even if the build is failed or unstable.
For example:

try{
BUILD_TO_RETURN = build(parameters: newparams, job: jobName, quietPeriod
: 5);
println("Result is: " + BUILD_TO_RETURN.getResult());  // THIS LINE IS 
NOT BEING CALLED IF THE BUILD IS UNSTABLE
}
catch(Exception e)
{
   if (e instanceof InterruptedException || e.getCause() instanceof 
InterruptedException) {
  throw e;
   }
   else if( e.toString().contains("UNSTABLE") || 
e.toString().contains("FAILURE")){
   println("buildJob : No exception, the job result: ${e}"); // THIS 
LINE IS BEING CALLED
   return BUILD_TO_RETURN;
  }


What actually happening is that BUILD_TO_RETURN returned is null. Which 
means an exception was thrown for UNSTABLE build.
I would like rather to have the UNSTABLE build object in my hands and 
return it.

Is it possible to "ignore" failure\unstable build and do not ignore all 
other exceptions?

Thanks,
Valeriy

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6bafe3e3-380e-4463-adcb-c3067d8162ce%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[workflow-plugin] Running a worker job on executor allocated by workflow job

2015-12-01 Thread mayhyr
Hi,

I have a set of jobs that I want to integrate using a common Workflow. Some 
of them contains complex plugin configuration that is hard to duplicate 
within a workflow, i.e. xunit plugin, extended email, etc.
Concurrent executions of this workflow should be allowed. At the same time 
I have a bunch of slaves each with only one executor (to lock non-shareable 
resources). In addition it should be guaranteed that no other job is able 
to grab the node in the middle of the workflow, so that

node('slave1'){
build('step_1')
}
node('slave1'){
build('step_2')
}

approach is not applicable as a concurrent execution may be wedged in 
between two steps.
 
My initial desire was to allocate a node within a workflow and then call 
build() within its closure, I thought those jobs will use the same executor 
as the workflow. However, it's not like that, the child job also want to 
grab an executor.

node('slave1'){ //will hang infinitely if slave1 has only one executor
build('step_1')
build('step_2')
}

So my question: is it possible to share an executor allocated by a workflow 
with child jobs? Or lock it in any other way?

I found this JIRA on locks support for Workflow: 
https://issues.jenkins-ci.org/browse/JENKINS-30269. It seems that at the 
moment there is no consistent way for locking in Workflow. Maybe there is 
some workaround?

Thanks,
Nick

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/167298fc-17bb-4901-bbed-cf1d85f4933a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: jenkins advanced user right

2015-12-01 Thread iostrym
thanks a lot. but it will be difficult for us to buy such a plugin.

anyone else know if there is a free plug in to lock some slave for some 
users or one user ?

Le mardi 1 décembre 2015 11:06:00 UTC+1, Stephen Connolly a écrit :
>
> On 1 December 2015 at 10:01, iostrym > 
> wrote:
>
>> Thanks.
>>
>> role based plugin don't work without cloudbee folder ? I had a quick look 
>> at role based plugin but hte problem is that all existing right for each 
>> user (around 30) will be lost with this plugin. It seems that we will have 
>> to redo all right for each user. right ?
>>
>> I also discover that at job creation it is possible to "protect" the job 
>> and add right for specific user but it is quite fastiduous if there are 
>> several user to give access.
>>
>>
> Ahem...
>
> [Puts on CloudBees Employee Hat]
>
> Really sounds like you are looking for some of the enterprise features in 
> CloudBees Jenkins Enterprise:
>
> * CloudBees RBAC plugin supports importing your current Matrix or Project 
> Matrix security settings so you can migrate to an fully RBAC model piecewise
> * CloudBees RBAC plugin allows for creation of local groups that make 
> per-project role assignment easier
> * CloudBees RBAC plugin allows delegation of RBAC management for specific 
> items to a subset of users
> * CloudBees Folders plus allows restriction of some slaves to jobs within 
> specific folders
> * etc
>
> [Removes CloudBees Employee Hat] 
>  
>
>> In the same subject, what about "slave protection" ? If I add a slave, is 
>> it possible to be sure that a job from another group of user (another 
>> project) won't use that slave ? I don't find any slave protection. Even if 
>> the slave is not configured to be used "as much as possible", it seems to 
>> be still possible for a user to select my slave for his job. (and execute a 
>> rm * -rf on my machine...)
>>
>> Best regards,
>>
>> Le mardi 1 décembre 2015 03:57:08 UTC+1, Indra Gunawan (ingunawa) a 
>> écrit :
>>>
>>> Use Cloudbee Folder, and Role based Plugin.  Define specific role based 
>>> on the regex of each of name of folder for projects/jobs.   One category of 
>>> jobs each in a separate folder.
>>>
>>>
>>> From:  on behalf of iostrym <
>>> arman...@gmail.com>
>>> Reply-To: "jenkins...@googlegroups.com" 
>>> Date: Monday, November 30, 2015 at 1:48 AM
>>> To: "jenkins...@googlegroups.com" 
>>> Subject: jenkins advanced user right
>>>
>>> Hello, 
>>>
>>> Is it possible to give right for some users to create and configure 
>>> their job without being able to modify some jobs.
>>>
>>> Typically, have one job area for one project and another job area for 
>>> another project. And use from one project that can't modify job for the 
>>> other project.
>>>
>>> Is this possible ?
>>>
>>> -- 
>>> 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-use...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/jenkinsci-users/c843b0cd-778b-4960-aafe-1371b7686c62%40googlegroups.com
>>>  
>>> 
>>> .
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>> -- 
>> 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-use...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/jenkinsci-users/5eeb1923-d6cc-4a36-b93a-7ff47c119f95%40googlegroups.com
>>  
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/a009e16c-2949-41a4-86f8-63d2867704d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing build status in the build history of several jobs

2015-12-01 Thread ludovic . vercruysse
No, only my team has an access to the server on which the Jenkins jobs are 
stored and we did not perform such a removal.


Le mardi 1 décembre 2015 11:03:35 UTC+1, Victor Martinez a écrit :
>
> That's an interesting topic
>
> I've never had such an issue, does anybody got access to remove files in 
> the server? As far as I see, if you delete a particular build it won't 
> throw any log traces by default, you will need to add some debug level, I 
> guess so
>
> Cheers
>
> On Tuesday, 1 December 2015 09:05:39 UTC+1, ludovic.v...@atos.net wrote:
>>
>> Dear,
>>
>> Accessing to the url /22 displays an error 404.
>>
>> I also did not find any reference to the deletion of this build in the 
>> logs of Jenkins (stdout.log and audit.log)
>>
>> May I ask you what can cause missing build.xml files and how we can avoid 
>> such issues ? 
>>
>> Best regards
>>
>>
>>
>> Le lundi 30 novembre 2015 22:14:00 UTC+1, Daniel Beck a écrit :
>>>
>>>
>>> On 30.11.2015, at 20:00, lvot...@redhat.com wrote: 
>>>
>>> > It is possible that builds are not loaded. 
>>>
>>> The build.xml are missing, so they cannot be loaded. 
>>>
>>> --- 
>>>
>>> Maybe these builds were deleted, and deletion was incomplete? 
>>>
>>>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/bf2881fb-c9ca-4ad4-809f-dd0c3472e6cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: jenkins advanced user right

2015-12-01 Thread Stephen Connolly
On 1 December 2015 at 10:01, iostrym  wrote:

> Thanks.
>
> role based plugin don't work without cloudbee folder ? I had a quick look
> at role based plugin but hte problem is that all existing right for each
> user (around 30) will be lost with this plugin. It seems that we will have
> to redo all right for each user. right ?
>
> I also discover that at job creation it is possible to "protect" the job
> and add right for specific user but it is quite fastiduous if there are
> several user to give access.
>
>
Ahem...

[Puts on CloudBees Employee Hat]

Really sounds like you are looking for some of the enterprise features in
CloudBees Jenkins Enterprise:

* CloudBees RBAC plugin supports importing your current Matrix or Project
Matrix security settings so you can migrate to an fully RBAC model piecewise
* CloudBees RBAC plugin allows for creation of local groups that make
per-project role assignment easier
* CloudBees RBAC plugin allows delegation of RBAC management for specific
items to a subset of users
* CloudBees Folders plus allows restriction of some slaves to jobs within
specific folders
* etc

[Removes CloudBees Employee Hat]


> In the same subject, what about "slave protection" ? If I add a slave, is
> it possible to be sure that a job from another group of user (another
> project) won't use that slave ? I don't find any slave protection. Even if
> the slave is not configured to be used "as much as possible", it seems to
> be still possible for a user to select my slave for his job. (and execute a
> rm * -rf on my machine...)
>
> Best regards,
>
> Le mardi 1 décembre 2015 03:57:08 UTC+1, Indra Gunawan (ingunawa) a écrit :
>>
>> Use Cloudbee Folder, and Role based Plugin.  Define specific role based
>> on the regex of each of name of folder for projects/jobs.   One category of
>> jobs each in a separate folder.
>>
>>
>> From:  on behalf of iostrym <
>> arman...@gmail.com>
>> Reply-To: "jenkins...@googlegroups.com" 
>> Date: Monday, November 30, 2015 at 1:48 AM
>> To: "jenkins...@googlegroups.com" 
>> Subject: jenkins advanced user right
>>
>> Hello,
>>
>> Is it possible to give right for some users to create and configure their
>> job without being able to modify some jobs.
>>
>> Typically, have one job area for one project and another job area for
>> another project. And use from one project that can't modify job for the
>> other project.
>>
>> Is this possible ?
>>
>> --
>> 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-use...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/jenkinsci-users/c843b0cd-778b-4960-aafe-1371b7686c62%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/5eeb1923-d6cc-4a36-b93a-7ff47c119f95%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CA%2BnPnMw%3DVcCRZrwAtXk4jsDNVtmOV7C%3DTER8qVeyUWPNiUm1wA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing build status in the build history of several jobs

2015-12-01 Thread Victor Martinez
That's an interesting topic

I've never had such an issue, does anybody got access to remove files in 
the server? As far as I see, if you delete a particular build it won't 
throw any log traces by default, you will need to add some debug level, I 
guess so

Cheers

On Tuesday, 1 December 2015 09:05:39 UTC+1, ludovic.v...@atos.net wrote:
>
> Dear,
>
> Accessing to the url /22 displays an error 404.
>
> I also did not find any reference to the deletion of this build in the 
> logs of Jenkins (stdout.log and audit.log)
>
> May I ask you what can cause missing build.xml files and how we can avoid 
> such issues ? 
>
> Best regards
>
>
>
> Le lundi 30 novembre 2015 22:14:00 UTC+1, Daniel Beck a écrit :
>>
>>
>> On 30.11.2015, at 20:00, lvot...@redhat.com wrote: 
>>
>> > It is possible that builds are not loaded. 
>>
>> The build.xml are missing, so they cannot be loaded. 
>>
>> --- 
>>
>> Maybe these builds were deleted, and deletion was incomplete? 
>>
>>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/8c0b914e-94bb-4afa-b0d8-08adc34c202d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: jenkins advanced user right

2015-12-01 Thread iostrym
Thanks.

role based plugin don't work without cloudbee folder ? I had a quick look 
at role based plugin but hte problem is that all existing right for each 
user (around 30) will be lost with this plugin. It seems that we will have 
to redo all right for each user. right ?

I also discover that at job creation it is possible to "protect" the job 
and add right for specific user but it is quite fastiduous if there are 
several user to give access.

In the same subject, what about "slave protection" ? If I add a slave, is 
it possible to be sure that a job from another group of user (another 
project) won't use that slave ? I don't find any slave protection. Even if 
the slave is not configured to be used "as much as possible", it seems to 
be still possible for a user to select my slave for his job. (and execute a 
rm * -rf on my machine...)

Best regards,

Le mardi 1 décembre 2015 03:57:08 UTC+1, Indra Gunawan (ingunawa) a écrit :
>
> Use Cloudbee Folder, and Role based Plugin.  Define specific role based on 
> the regex of each of name of folder for projects/jobs.   One category of 
> jobs each in a separate folder.
>
>
> From: > on behalf of iostrym <
> arman...@gmail.com >
> Reply-To: "jenkins...@googlegroups.com " <
> jenkins...@googlegroups.com >
> Date: Monday, November 30, 2015 at 1:48 AM
> To: "jenkins...@googlegroups.com " <
> jenkins...@googlegroups.com >
> Subject: jenkins advanced user right
>
> Hello, 
>
> Is it possible to give right for some users to create and configure their 
> job without being able to modify some jobs.
>
> Typically, have one job area for one project and another job area for 
> another project. And use from one project that can't modify job for the 
> other project.
>
> Is this possible ?
>
> -- 
> 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-use...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/jenkinsci-users/c843b0cd-778b-4960-aafe-1371b7686c62%40googlegroups.com
>  
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/5eeb1923-d6cc-4a36-b93a-7ff47c119f95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Commit hook causes not respecting choice parameter defaults

2015-12-01 Thread Dave Save
Hi everyone, first time question.

I noticed that builds originating from git commit 
(BUILD_CAUSE=COMMITHOOKCAUSE) have none of the choice parameters defaults.

Is that normal behavior?

Thanks,
Dave



-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/ea74e052-1b27-464f-988b-aa8ad86d4d2c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins job started by timer at an unexpected time

2015-12-01 Thread ludovic . vercruysse
Dear,

As the issue occured, we did not see any error message in the logs of 
https://[OUR_JENKINS_INSTANCE]/computer/[OUR_SLAVE_SERVER]/log

On which class would you advice us to add logging ?

What would be the link between the fact that a connection issue has perhaps 
occured between the master and the slave, and the fact that the job has 
been triggered at an unexpected time ?

Best regards



Le lundi 30 novembre 2015 09:21:59 UTC+1, Victor Martinez a écrit :
>
> Hi,
> If you connect those slaves via ssh then can you review your networking 
> configuration and verify no interruptions happened when the build ran?
>
> You can add some verbose output based on the logs:
> - https://wiki.jenkins-ci.org/display/JENKINS/Logging
>
> SSH slave/master connections within Jenkins retries up to 5 times to get 
> connected afaik.
>
> Cheers
>
>
> On Monday, 30 November 2015 08:58:32 UTC+1, ludovic.v...@atos.net wrote:
>>
>> Dear,
>>
>>
>> We are currently using Jenkins 1.596.3 and we have faced an issue with a 
>> job which was not started at the correct timestamp by the timer.
>>
>>
>> The job is configured to be executed automatically on a daily basis at 
>> 7:30pm CEST.
>>
>>
>> The job execution has been correctly triggered and the build has started 
>> at 7:30pm CEST, as expected.
>>
>>
>> However, the logs of the build show the following error message:
>>
>>
>> Looks like the node went offline during the build. Check the slave log for 
>> the details. 
>> FATAL: channel is already closed
>>
>>  It seems that there has been a communication issue between our Jenkins 
>> master (hosted on a VM) and our Jenkins slave (a physical server)
>>
>>
>> Therefore, the job has failed.
>>
>> At that time, we did not face any hardware issue on the servers.
>>
>>
>> In the jenkins logs, except if I missed it, I did not find any reference 
>> of this communication issue, therefore, I cannot identify the root cause of 
>> this communication issue.
>>
>>
>> Could you please tell if there is a possibility to get more information ?
>>
>>
>> Later during the night (at 00:15am CEST), we have done a restart of the 
>> Jenkins instance and the job has been executed at 00:30am CEST by the 
>> trigger.
>> This execution was not expected because the job is not configured to be 
>> executed at 00:30am.
>>
>>
>> Could you please if this execution is a consequence of the communication 
>> issue faced before ?
>>
>> Could you please describe the process when jobs are aborted for such 
>> issues ? Are they automatically restarted by Jenkins after its next restart 
>> ?
>>
>>
>> FYI, this request relates to 
>> https://issues.jenkins-ci.org/browse/JENKINS-31230 which has been 
>> rejected for the following reason:
>>
>>
>> *Daniel Beck 
>>  
>> added a comment - 17/Nov/15 12:54 PM* 
>>
>> *This is an issue tracker, not a support site. Furthermore, 1.596.x and 
>> 1.609.x are no longer supported, you need to show a bug exists on 1.625.x 
>> to get attention in this tracker.*
>>
>> *To get help, ask the jenkinsci-users mailing list, or in #jenkins on 
>> Freenode.*
>>
>>
>> Best regards
>>
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/4dda2743-3664-415b-bb2a-c30eb12745fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Missing build status in the build history of several jobs

2015-12-01 Thread ludovic . vercruysse
Dear,

Accessing to the url /22 displays an error 404.

I also did not find any reference to the deletion of this build in the logs 
of Jenkins (stdout.log and audit.log)

May I ask you what can cause missing build.xml files and how we can avoid 
such issues ? 

Best regards



Le lundi 30 novembre 2015 22:14:00 UTC+1, Daniel Beck a écrit :
>
>
> On 30.11.2015, at 20:00, lvot...@redhat.com  wrote: 
>
> > It is possible that builds are not loaded. 
>
> The build.xml are missing, so they cannot be loaded. 
>
> --- 
>
> Maybe these builds were deleted, and deletion was incomplete? 
>
>

-- 
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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b21f847e-5e4b-4872-8a25-a4a56c3613ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.