Re: Overriding "Delete Build"

2016-03-01 Thread Baptiste Mathus
hudson.model.listeners.ItemListener#onDeleted

2016-03-02 6:33 GMT+01:00 Shashank Bhargav :

> I need to perform some custom operations in my plugin when user does
> "Delete Build". How do I do this?
>
> --
> 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/f6a6754d-f09a-49fd-a7d8-6bcd9a7c5d27%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/CANWgJS5wb0rmounbYA6FwgFxWJVMUFZpBDkQft52EdtjOmJbZA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Same Build number series for multiple projects

2016-03-01 Thread Amit Bhardwaj
Hello Michael, 

I really appreciate that you found time to answer my query. 

But, my requirement is to have separate projects in jenkins. I run various 
integration tests after building binary. Idea is to do the same for all new 
branches. I have setup cron to run these builds. 
If I keep it parameterized, I believe I will have to run the builds 
manually with new branch name everytime which is not intended. 

Regards
Amit 

On Wednesday, March 2, 2016 at 9:03:07 AM UTC+5:30, Michael Giroux wrote:
>
> If you want to share a single build number over all branch builds, you 
> will want to configure your job to accept a branch name to be built.  Then 
> run as a parameterized build and specify the branch to build.  This will 
> give you build numbers like this:
>
> master: 1
> master: 2
> branch-a: 3
> branch-b: 4
> master: 5
> branch-b: 6
> ...
>
> Is this what you want?
>
> On Tuesday, March 1, 2016 at 12:25:22 AM UTC-7, Amit Bhardwaj wrote:
>>
>> Hi, 
>> Thanks for the reply. I went through those links. I believe my 
>> requirement is a bit different from those. 
>>
>> I would need a universal sequence/build number which can be used by 
>> multiple projects in Jenkins. 
>>
>> Regards
>> AB 
>>
>> On Friday, February 26, 2016 at 8:34:14 PM UTC+5:30, Victor Martinez 
>> wrote:
>>>
>>> Hi,
>>>
>>>  You don't need to use Capital Cases at all, lower cases are in good 
>>> shape and easy to read.
>>>
>>>  Coming back to your questions:
>>>
>>>  - https://wiki.jenkins-ci.org/display/JENKINS/Build+Name+Setter+Plugin 
>>> might help you to set those numbers based on token/attributes
>>>  - https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin 
>>> is another way with more granularity
>>>
>>> I hope it helps
>>>
>>> On Friday, 26 February 2016 13:27:10 UTC, Amit Bhardwaj wrote:

 Hi Group!

 I have a requirement where I have 2-3 branches from a common master 
 (say A-dev, B-dev2.0, C-Qa) and I want to run Jenkins for each branch and 
 check stability of my code and binaries. 

 Currently I run Jenkins Project for 'master' branch only and with each 
 build I get a iterative next number as my build number (which is default 
 behavior). But now that I have multiple branches to build, I have to use 
 Jenkins for all branches. 

 I think I will need to create Jenkins Project for all branches but 
 don't know 'HOW CAN I KEEP BUILD NUMBER SEQUENCE" as same.

 Please let me know how can I achieve this. 

 Regards
 AB

>>>
>>>  
>>>
>>

-- 
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/f5b92796-5626-453a-aef2-16dc2fa56f09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Overriding "Delete Build"

2016-03-01 Thread Shashank Bhargav
I need to perform some custom operations in my plugin when user does 
"Delete Build". How do I do this?

-- 
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/f6a6754d-f09a-49fd-a7d8-6bcd9a7c5d27%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Same Build number series for multiple projects

2016-03-01 Thread Michael Giroux
If you want to share a single build number over all branch builds, you will 
want to configure your job to accept a branch name to be built.  Then run 
as a parameterized build and specify the branch to build.  This will give 
you build numbers like this:

master: 1
master: 2
branch-a: 3
branch-b: 4
master: 5
branch-b: 6
...

Is this what you want?

On Tuesday, March 1, 2016 at 12:25:22 AM UTC-7, Amit Bhardwaj wrote:
>
> Hi, 
> Thanks for the reply. I went through those links. I believe my requirement 
> is a bit different from those. 
>
> I would need a universal sequence/build number which can be used by 
> multiple projects in Jenkins. 
>
> Regards
> AB 
>
> On Friday, February 26, 2016 at 8:34:14 PM UTC+5:30, Victor Martinez wrote:
>>
>> Hi,
>>
>>  You don't need to use Capital Cases at all, lower cases are in good 
>> shape and easy to read.
>>
>>  Coming back to your questions:
>>
>>  - https://wiki.jenkins-ci.org/display/JENKINS/Build+Name+Setter+Plugin 
>> might help you to set those numbers based on token/attributes
>>  - https://wiki.jenkins-ci.org/display/JENKINS/Groovy+Postbuild+Plugin 
>> is another way with more granularity
>>
>> I hope it helps
>>
>> On Friday, 26 February 2016 13:27:10 UTC, Amit Bhardwaj wrote:
>>>
>>> Hi Group!
>>>
>>> I have a requirement where I have 2-3 branches from a common master (say 
>>> A-dev, B-dev2.0, C-Qa) and I want to run Jenkins for each branch and check 
>>> stability of my code and binaries. 
>>>
>>> Currently I run Jenkins Project for 'master' branch only and with each 
>>> build I get a iterative next number as my build number (which is default 
>>> behavior). But now that I have multiple branches to build, I have to use 
>>> Jenkins for all branches. 
>>>
>>> I think I will need to create Jenkins Project for all branches but don't 
>>> know 'HOW CAN I KEEP BUILD NUMBER SEQUENCE" as same.
>>>
>>> Please let me know how can I achieve this. 
>>>
>>> Regards
>>> AB
>>>
>>
>>  
>>
>

-- 
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/7f75c016-ddee-40af-a801-68eb4550996a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: vSphere plugin does not starts slave

2016-03-01 Thread ryanvsielts
Hi Jason Swager,

I also have this problem. I'm using vsphere 6.0 and vsphere cloud plugin 
2.11. But the jenkins conn't connect to the vm.







Could you help me solve this?


Many Thanks


在 2012年9月7日星期五 UTC+8下午11:08:49,Jason Swager写道:
>
> I believe that HTTPS is the ONLY allowed way of connecting.
>
> The plugin will work with a vCenter installation or with single ESXi 
> hosts.  BUT - the ESXi host must be fully licensed, otherwise the remote 
> APIs won't work, which is how the plugin works with the VMs.  If you get 
> the free ESXi host with it's free license, the remote APIs are disabled and 
> the plugin won't work.  I'll update the wiki page for this...
>
> On Friday, September 7, 2012 7:39:30 AM UTC-7, Gábor Garami wrote:
>>
>> (shake) Nothing. 
>>
>> Strange question, but can it cause a problem I use https in vSphere 
>> URL? And, this is not really a vSphere cloud but a single ESXi 
>> server... 
>>
>> Garami Gábor 
>> E-mail: gabor@hron.me 
>> Tel: +36 20 235 9621 
>> MSN: hr...@vipmail.hu 
>> Skype: hron84 
>>
>>
>> On Fri, Sep 7, 2012 at 3:31 PM, Jason Swager  wrote: 
>> > Your configurations all look good.  When Jenkins tries to start the 
>> slave, 
>> > do you see any commands at all appearing in vSphere?  At the very 
>> least, I 
>> > would hope to see a power on event. 
>> > 
>> > 
>> > On Friday, September 7, 2012 3:06:50 AM UTC-7, Gábor Garami wrote: 
>> >> 
>> >> Jenkins node config: 
>> https://skitch.com/hron84/e1rj4/jenkins-vsphere-node 
>> >> 
>> >> Plugin config: https://skitch.com/hron84/e1rj9/jenkins-vsphere 
>> >> 
>> >> 
>> >> Garami Gábor 
>> >> E-mail: gabor@hron.me 
>> >> Tel: +36 20 235 9621 
>> >> MSN: hr...@vipmail.hu 
>> >> Skype: hron84 
>> >> 
>> >> 
>> >> On Wed, Sep 5, 2012 at 5:49 PM, Gábor Garami  
>> wrote: 
>> >> > Yes, that is the plugin what i use. 
>> >> > 
>> >> > No, test vm connection button does not says any problems. 
>> >> > 
>> >> > I cannot access my jenkins now, but i'll post screenshot about 
>> settings 
>> >> > asap. 
>> >> > 
>> >> > Garami Gábor 
>> >> > gabor@hron.me 
>> >> > Skype: hron84 
>> >> > 
>> >> > 
>> >> > Tel: +36 20 235 9621 
>> >> > 
>> >> > Sent from my T-Mobile G2 
>> >> > Ezt a levelet telefonról adták fel, ékezethibákat tartalmazhat. 
>> >> > 
>> >> > 2012.09.05. 15:53, "Jason Swager"  ezt írta: 
>> >> > 
>> >> >> Just to confirm, we are talking about the vSphere Cloud plugin? 
>> >> >> https://wiki.jenkins-ci.org/display/JENKINS/vSphere+Cloud+Plugin 
>> >> >> 
>> >> >> Assuming that you are, the Test VM Connection button does work and 
>> >> >> indicates no problems? 
>> >> >> What are the slave settings? 
>> >> >> 
>> >> >> On Wednesday, September 5, 2012 1:51:48 AM UTC-7, Gábor Garami 
>> wrote: 
>> >> >>> 
>> >> >>> I set slave activation via SSH. But the main problem is VM does 
>> not 
>> >> >>> powered on. So, my problem is not the VM not boots up and connects 
>> to 
>> >> >>> master, but nobody pushes the power button on it... (and yes, 
>> because 
>> >> >>> it not powered on, it does not connects to the master :-) ) 
>> >> >>> 
>> >> >>> If i turn on VM manually, Jenkins recognizes it and starts slave 
>> >> >>> process correctly, however, this is not I really want (turn on VM 
>> >> >>> every case when I need it). I would like if Jenkins can turn 
>> on/off VM 
>> >> >>> on demand. 
>> >> >>> 
>> >> >>> Garami Gábor 
>> >> >>> E-mail: gabor@hron.me 
>> >> >>> Tel: +36 20 235 9621 
>> >> >>> MSN: hr...@vipmail.hu 
>> >> >>> Skype: hron84 
>> >> >>> 
>> >> >>> 
>> >> >>> On Wed, Sep 5, 2012 at 4:32 AM, Jason Swager  
>> >> >>> wrote: 
>> >> >>> > How is the slave agent being started?  Does the VM connect via 
>> Java 
>> >> >>> > Web 
>> >> >>> > Start?  Is Jenkins supposed to start the slave agent via SSH? 
>> >> >>> > 
>> >> >>> > If via Java Web Start, make sure the the slave agent really did 
>> >> >>> > start. 
>> >> >>> > 
>> >> >>> > If via SSH, make sure that the VM has enough time to fully start 
>> >> >>> > (wait 
>> >> >>> > for 
>> >> >>> > VM Tools plus any necessary delay) so that the SSH server is 
>> online 
>> >> >>> > before 
>> >> >>> > Jenkins tries to communicate. 
>> >> >>> > 
>> >> >>> > 
>> >> >>> > On Sunday, September 2, 2012 4:44:23 AM UTC-7, Gábor Garami 
>> wrote: 
>> >> >>> >> 
>> >> >>> >> Hi! 
>> >> >>> >> 
>> >> >>> >> I use VMware ESXi 4.0 with the vSphere plugin, and slave VM 
>> does 
>> >> >>> >> not 
>> >> >>> >> being started. It is always stuck on Powering on VM state (at 
>> least 
>> >> >>> >> based on logs). 
>> >> >>> >> 
>> >> >>> >> The Test VM Connection passes. 
>> >> >>> >> 
>> >> >>> >> openSUSE Linux 11.4 
>> >> >>> >> Jenkins ver. 1.479 (installed from 

Re: Running a Jenkins job from a shell script

2016-03-01 Thread Michael Giroux
If you are referring to the authtoken from build triggers, you could 
retrieve it using the jenkins cli to retrieve the config.xml for the job 
and extract the authToken element.

 (System)

  xxxyyy

  

  false


On Tuesday, March 1, 2016 at 7:13:38 PM UTC-7, Alan Evangelista wrote:
>
> I do not need help in how to call the HTTP API. Triggering a Jenkins job 
> requires the Jenkins API token;
> my question is to how to have this Jenkins API token without hardcoding it 
> in the script. The script
> is in a public git repo and I dont want the Jenkins API token available to 
> everyone.
>
> As Jenkins user and user API token are not available via Jenkins env 
> variables, the solution I found is
> to put this data in a file (always in same path) in each Jenkins slave and 
> the script opens the file
> to get the data.
>
>
> Regards,
> Alan Evangelista
>

-- 
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/249588e8-172c-4900-8acb-d0ef62a13627%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Running a Jenkins job from a shell script

2016-03-01 Thread Alan Evangelista

I do not need help in how to call the HTTP API. Triggering a Jenkins job 
requires the Jenkins API token;
my question is to how to have this Jenkins API token without hardcoding it in 
the script. The script
is in a public git repo and I dont want the Jenkins API token available to 
everyone.

As Jenkins user and user API token are not available via Jenkins env variables, 
the solution I found is
to put this data in a file (always in same path) in each Jenkins slave and the 
script opens the file
to get the data.


Regards,
Alan Evangelista

--
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/56D649BB.1040004%40linux.vnet.ibm.com.
For more options, visit https://groups.google.com/d/optout.


Re: jenkins home directory

2016-03-01 Thread Gurusharan
Hello Hector,

I see now what's the problem. I believe the environment variables may not
be taken by the service, it uses jenkins.xml to get the environment
variables. By default, a windows service uses the jenkins directory you
give for installation as the jenkins home.

Can you please check if the steps in this link help you?
http://tech.nitoyon.com/en/blog/2014/02/25/jenkins-home-win/

Please note that you MUST not move some of the files from the old jenkins
directory and that you need that directory to stay there (I mean you should
not be deleting the whole directory).

Bye for now,
*Gurusharan S.*

On Mon, Feb 29, 2016 at 9:09 PM, Hector Magnanao 
wrote:

> Hi Gurusharan,
>
> Yes, I followed the exact steps that Geoffroy outlined above:
>
>1. shutdown your jenkins instance
>2. move the folder /path/to/old_jenkins_home to the new location
>/path/to/new_jenkins_home
>3. create an environment variable JENKINS_HOME, which value is
>/path/to/new_jenkins_home
>4. start your jenkins instance
>
> I am currently running Jenkins as a windows service.  I noticed that if I
> run the jenkins service from the command line and go into Jenkins, the new
> home directory is reflected.  But when run it as a windows service, the old
> home directory is still showing.  How would I do that so my new home
> directory is reflected from the windows service ?
>
> Hector
>
> On Friday, February 26, 2016 at 9:36:51 PM UTC-6, Gurusharan S wrote:
>
>> Hi Hector,
>>
>> Did you try the steps Geoffroy had explained?
>>
>> If so can you please brief us on how you are running Jenkins (windows
>> service, init.d on linux, etc.) and how you followed those steps.
>>
>> The steps are generic, how ever depending on how you run Jenkins, setting
>> up the environment might be tricky and so, the more information you can
>> provide the better it is to help troubleshoot.
>>
>> Regards,
>> Gurusharan S.
>> On Feb 27, 2016 3:16 AM, "Hector Magnanao"  wrote:
>>
>>> I followed the steps above but when I verified, the old home directory
>>> is still showing up.  How do I change the home directory for my login in
>>> Jenkins to the new Jenkins home ?
>>>
>>> On Sunday, February 21, 2016 at 10:01:35 AM UTC-6, Gurusharan S wrote:

 Hi Hector,

 On how to verify the new home directory, you need to go to the
 Configure jenkins page: Manage Jenkins -> Configure System.

 Typically the jenkins home directory of the current instance will be
 displayed first in the form.

 Hope this helps,

 Bye for now,
 Gurusharan S.


 On Friday, 19 February 2016 21:21:59 UTC+5:30, Hector Magnanao wrote:
>
> How do I change the home directory for Jenkins without having to
> reinstall ? And how do I verify the new home directory once it's changed ?
>
 --
>>> 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/eXEvmIA9sYk/unsubscribe
>>> .
>>> To unsubscribe from this group and all its topics, send an email to
>>> jenkinsci-use...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/jenkinsci-users/e15caf38-d4bb-4a93-848b-8d8a0f0b3a59%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/eXEvmIA9sYk/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/6ee60ffb-af67-4a5f-aae3-74ff4108dead%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/CAFohCsjSpC8pWAaG1E1rkrN%2BB%2BC%2BKWbVCHvo_1t6XhRm4DS6tw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Daniel Beck

On 01.03.2016, at 15:59, kondarre...@gmail.com wrote:

> I am behind proxy and a blank popup (I guess the registration screen) is 
> blocking me from accessing Jenkins web interface. Can you please suggest a 
> work around.

This should actually disappear after a while (30 seconds?) and tell you Jenkins 
cannot access the internet. Does it remain visible even after a long time?

-- 
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/50782B7C-B8B6-488E-AD0C-931C10AFB0E4%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Daniel Beck

On 01.03.2016, at 17:26, Eric Smalling  wrote:

> Has anyone posted a Docker Hub image yet? 

jenkinsci/jenkins:2.0-alpha-2 should be it. I added a link to 
https://jenkins-ci.org/2.0/

-- 
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/634E0F4A-C822-40A0-B0CD-9409C4510FD7%40beckweb.net.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Baptiste Mathus
FWIW, jenkinsci/jenkins:2.0-alpha-2 is also available.

See https://hub.docker.com/r/jenkinsci/jenkins/tags/

Cheers

2016-03-01 21:08 GMT+01:00 Christophe Furmaniak <
christophe.furmaniak...@gmail.com>:

> I just published one here: https://hub.docker.com/r/looztra/jenkins-20/
> (just adapted the "official" Dockerfile to the 2.0 dl url)
>
>
>
> Le mardi 1 mars 2016 17:26:26 UTC+1, Eric Smalling a écrit :
>>
>> Has anyone posted a Docker Hub image yet?  (I see several "jenkins2"
>> named ones out there, but the dates on them lead me to believe they are not
>> this.)
>>
>>
>> On Monday, February 29, 2016 at 5:39:22 PM UTC-6, R Tyler Croy wrote:
>>>
>>> As I mention in this blog post:
>>> https://jenkins-ci.org/blog/2016/02/29/jenkins2-alphas/
>>>
>>> The first Jenkins 2.0 alpha downloads are available (yay!). You can read
>>> more
>>> about it on the 2.0 landing page (https://jenkins-ci.org/2.0/), which
>>> also
>>> includes the links the download various native packages of the 2.0
>>> alpha.
>>>
>>>
>>> I'm going to be linking to this thread from the page and blog post for
>>> feedback, so by all means, download it and play around with it!
>>>
>>>
>>> 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/d5b8d70d-7cc1-45df-a156-07116e011f7a%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/CANWgJS656PAozRfYySTE-WW3V9yo0fgHP53GmEmJcBPkwBMYQw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Christophe Furmaniak
I just published one here: https://hub.docker.com/r/looztra/jenkins-20/ 
(just adapted the "official" Dockerfile to the 2.0 dl url)



Le mardi 1 mars 2016 17:26:26 UTC+1, Eric Smalling a écrit :
>
> Has anyone posted a Docker Hub image yet?  (I see several "jenkins2" named 
> ones out there, but the dates on them lead me to believe they are not this.)
>
>
> On Monday, February 29, 2016 at 5:39:22 PM UTC-6, R Tyler Croy wrote:
>>
>> As I mention in this blog post: 
>> https://jenkins-ci.org/blog/2016/02/29/jenkins2-alphas/ 
>>
>> The first Jenkins 2.0 alpha downloads are available (yay!). You can read 
>> more 
>> about it on the 2.0 landing page (https://jenkins-ci.org/2.0/), which 
>> also 
>> includes the links the download various native packages of the 2.0 alpha. 
>>
>>
>> I'm going to be linking to this thread from the page and blog post for 
>> feedback, so by all means, download it and play around with it! 
>>
>>
>> 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/d5b8d70d-7cc1-45df-a156-07116e011f7a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Announcing a Jenkins Plugins RPM Repository

2016-03-01 Thread Julien Pivotto
All,

I am happy to announce the availability of a test project I have run
during the last couple of days:

https://github.com/roidelapluie/Jenkins-Plugins-RPM

Repo:

https://jenkins.roidelapluie.be/yum/

The main features are described in the README:
- Dependencies support
- Plugins versions pinned in the Jenkins UI

If you want to use those RPM, it is really easy to switch to them:


1. Install the repository
2. yum install /var/lib/jenkins/plugins/*.jpi
3. Restart Jenkins


-- 
 (o-Julien Pivotto
 //\Open-Source Consultant
 V_/_   Inuits - https://www.inuits.eu

-- 
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/20160301194408.GA3314%40nitrogen.
For more options, visit https://groups.google.com/d/optout.


signature.asc
Description: PGP signature


Re: Adding changed files in the email content

2016-03-01 Thread Slide
If you use the email-ext plugin, it should be part of the default html and
text groovy templates.

On Tue, Mar 1, 2016 at 11:01 AM Hector Magnanao 
wrote:

> Is there a way to customize my emails after a build to contain the files
> that have been modified in the workspace ?  I'd like to see basically:
>
> Date file was changed
> Who changed it
> Filename
>
> --
> 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/95075cae-87ea-4224-baa8-62045141d4be%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/CAPiUgVeg4Oy3SDMnTxuPKpN70HCM9_zbyatx-1QEGQWu%2BH42cw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Adding changed files in the email content

2016-03-01 Thread Hector Magnanao
Is there a way to customize my emails after a build to contain the files 
that have been modified in the workspace ?  I'd like to see basically:

Date file was changed
Who changed it
Filename

-- 
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/95075cae-87ea-4224-baa8-62045141d4be%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how do i deactivate a build step without deleting

2016-03-01 Thread Hector Magnanao
thanks.  exactly what I need

On Tuesday, March 1, 2016 at 11:10:18 AM UTC-6, slide wrote:
>
> There is not unless you use the conditional build step plugin.
>
> On Tue, Mar 1, 2016 at 10:04 AM Hector Magnanao  > wrote:
>
>> Is there a way to deactivate a post-build step so that it doesn't execute 
>> without having to delete it ?  I want to be able to keep the code in the 
>> build step so that I can activate it later if I need it.
>>
>> -- 
>> 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/6bd23ca9-8937-4193-a3af-cd055c92a121%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/8255bbf6-acf2-4f12-ad37-a7ca765b43d5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Nicolas Geraud
Yes, I mean the tabs in the configuration pages. Too late to change, thanks 
for the reply.

Le mardi 1 mars 2016 17:07:47 UTC+1, Kohsuke Kawaguchi a écrit :
>
>
>
> 2016-03-01 1:11 GMT-08:00 Nicolas Geraud  >:
>
>> I think that tabs should be on a single row with left and right arrow to 
>> display hidden tabs like in 
>> https://www.google.com/design/spec/components/tabs.html#tabs-usage.
>>
>> Is this has been discussed elsewhere ?
>>
>
>  I assume you mean the tabs in the configuration pages?
>
> Yes, there have been a lot of conversations about these things, mainly in 
> the dev list I believe. 
>
>
> -- 
> Kohsuke Kawaguchi
>

-- 
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/65a92cca-59c1-4aaa-b283-78dffe8c6aba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Conditional Step Regular Expression Match

2016-03-01 Thread Eric Fetzer
Exactly, I'm just trying to build two of the 4 possible projects based on 
this call.  I put the comma in there for readability.  The other side is 
the regex.  The regex should always match the one with ALL in it because if 
I pass that, I want it to build every single one of them.  Your suggestion 
changing it to .* at the end works like a champ, THANKS!  I feel kind of 
dumb not having caught that myself...



On Monday, February 29, 2016 at 2:32:08 PM UTC-7, Eric Fetzer wrote:

> I don't understand why the following is a match for my regex.  Can someone 
> tell me what makes it a match?
>
> Regular expression run condition: Expression=[.*(OIS-Reports|OIS-ALL)*], 
> Label=[OIS-Client,OIS-Server]
> Run condition [Regular expression match] enabling perform for step 
> [Trigger/call builds on other projects]
>
> Thanks,
> Eric
>

-- 
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/cbc1730b-5b9a-4123-8e1e-5e7a8fb7b06d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: how do i deactivate a build step without deleting

2016-03-01 Thread Slide
There is not unless you use the conditional build step plugin.

On Tue, Mar 1, 2016 at 10:04 AM Hector Magnanao 
wrote:

> Is there a way to deactivate a post-build step so that it doesn't execute
> without having to delete it ?  I want to be able to keep the code in the
> build step so that I can activate it later if I need it.
>
> --
> 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/6bd23ca9-8937-4193-a3af-cd055c92a121%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/CAPiUgVf4YBEfWSqsp_NMn-Z63QpwuPfXWDB1v7CZvL0izVFdhA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins world 2016 registration ?

2016-03-01 Thread Yolk
Hi,

Thank you, that's good to know.

On Tuesday, March 1, 2016 at 6:01:51 PM UTC+1, Alyssa Tong wrote:
>
> Hello, 
>
> Jenkins World registration 
> is currently not available yet. It is expected to be avail on April 5.  
> There will be onsite registration available however there's discount to 
> register online during the early bird period.
>
> thnx
> alyssa 
>
> On Tue, Mar 1, 2016 at 8:37 AM, Yolk  
> wrote:
>
>> Hi all,
>>
>> I'd like to attend the 2016 conference in Santa Clara -CA but not sure 
>> where can I register ? ( No I'm not submitting anything, just want to 
>> attend ) Or can I just drop by and register at the venue ?
>>
>> Thank you very much.
>>
>> -- 
>> 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/23cd054b-abc8-4d9a-8ab6-b868e2051ee4%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/89fdbe66-3bfb-4394-b8a7-8e90b28078a9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


how do i deactivate a build step without deleting

2016-03-01 Thread Hector Magnanao
Is there a way to deactivate a post-build step so that it doesn't execute 
without having to delete it ?  I want to be able to keep the code in the 
build step so that I can activate it later if I need it.

-- 
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/6bd23ca9-8937-4193-a3af-cd055c92a121%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins world 2016 registration ?

2016-03-01 Thread Alyssa Tong
Hello,

Jenkins World registration is
currently not available yet. It is expected to be avail on April 5.  There
will be onsite registration available however there's discount to register
online during the early bird period.

thnx
alyssa

On Tue, Mar 1, 2016 at 8:37 AM, Yolk  wrote:

> Hi all,
>
> I'd like to attend the 2016 conference in Santa Clara -CA but not sure
> where can I register ? ( No I'm not submitting anything, just want to
> attend ) Or can I just drop by and register at the venue ?
>
> Thank you very much.
>
> --
> 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/23cd054b-abc8-4d9a-8ab6-b868e2051ee4%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/CAMBsfbvECUCOUHbKuLJAKb3G8Lri%2BNn9fZaLh_Sf_HFLrzeE4A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Conditional Step Regular Expression Match

2016-03-01 Thread Matthew.Webber
As far as I can see, the “Label” is just a string. So 
Label=[NAP-Client,NAP-Server] does not try comparing 2 different string with 
the regex, it’s simply a single string that happebns to have a comma in the 
middle of it. That comma does not means anything special, because this is not a 
regex.

So, the first Expression=[.*(NAP-Client|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server] example, which you say gives the wrong result:
The regex will match something that ENDS with either NAP-Client or NAP-ALL. The 
label does not match that.
I think what you want is .*(NAP-Client|NAP-ALL).* which matches either 
NAP-Client or NAP-ALL, surrounded by anything (or nothing).
This is similar to what you first had, except that it ends with “.*” rather 
than “*”.

Hope that helps and that I’ve understood correctly what’s going on.

Matthew Webber

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Fetzer
Sent: 01 March 2016 16:14
To: Jenkins Users
Subject: Re: Conditional Step Regular Expression Match

Thanks for your response Matthew!  With your change, we seem to be a lot 
closer.  I have from 1 to 4 conditional projects to call.  In this particular 
build, I'm telling it to do 2 of the 4.  Here's what it did based on the 
condition:

Regular expression run condition: Expression=[.*(NAP-Client|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server]
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]   Didn't go into this one which it 
should have
Regular expression run condition: Expression=[.*(NAP-Server|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server] Went into this one as it should have
Run condition [Regular expression match] enabling perform for step 
[Trigger/call builds on other projects]
Returning node parameter for master
Waiting for the completion of NAP-Server
NAP-Server #98 completed. Result was 
SUCCESS
Regular expression run condition: Expression=[.*(NAP-Reports|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server]Didn't go in as it shouldn't have
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]
Regular expression run condition: Expression=[.*(CAS|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server] Didn't go in as it shouldn't have
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]
Warning: you have no plugins providing access control for builds, so falling 
back to legacy behavior of permitting any downstream builds to be triggered

Is it having a problem with the ".*" because NAP-Client occurs at the beginning 
of the line?



-- 
This e-mail and any attachments may contain confidential, copyright and or 
privileged material, and are for the use of the intended addressee only. If you 
are not the intended addressee or an authorised recipient of the addressee 
please notify us of receipt by returning the e-mail and do not use, copy, 
retain, distribute or disclose the information in or attached to the e-mail.
Any opinions expressed within this e-mail are those of the individual and not 
necessarily of Diamond Light Source Ltd. 
Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments 
are free from viruses and we cannot accept liability for any damage which you 
may sustain as a result of software viruses which may be transmitted in or with 
the message.
Diamond Light Source Limited (company no. 4375679). Registered in England and 
Wales with its registered office at Diamond House, Harwell Science and 
Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom

-- 
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/6836E1DC2DDC174C9D64B7860E5AF5FCA90F76EE%40EXCHMBX01.fed.cclrc.ac.uk.
For more options, visit https://groups.google.com/d/optout.


Re: Conditional Step Regular Expression Match

2016-03-01 Thread Eric Pyle
You need ".*" instead of "+" after the close parentheses. Otherwise you 
are only able to match the second entry in your label, because you are 
not allowing anything after the matched label.


Eric

On 3/1/2016 11:14 AM, Eric Fetzer wrote:
Thanks for your response Matthew!  With your change, we seem to be a 
lot closer.  I have from 1 to 4 conditional projects to call.  In this 
particular build, I'm telling it to do 2 of the 4.  Here's what it did 
based on the condition:


Regular expression run condition: 
Expression=[.*(NAP-Client|NAP-ALL)+], Label=[NAP-Client,NAP-Server]
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects] *Didn't go into this one which 
it should have*
Regular expression run condition: 
Expression=[.*(NAP-Server|NAP-ALL)+], Label=[NAP-Client,NAP-Server] 
*Went into this one as it should have*
Run condition [Regular expression match] enabling perform for step 
[Trigger/call builds on other projects]

Returning node parameter for master
Waiting for the completion of _NAP-Server_ 

_NAP-Server #98_  
completed. Result was SUCCESS
Regular expression run condition: 
Expression=[.*(NAP-Reports|NAP-ALL)+], Label=[NAP-Client,NAP-Server] 
*Didn't go in as it shouldn't have*
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]
Regular expression run condition: Expression=[.*(CAS|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server] *Didn't go in as it shouldn't have*
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]
Warning: you have no plugins providing access control for builds, so 
falling back to legacy behavior of permitting any downstream builds to 
be triggered


Is it having a problem with the ".*" because NAP-Client occurs at the 
beginning of the line?



On Monday, February 29, 2016 at 2:32:08 PM UTC-7, Eric Fetzer wrote:

I don't understand why the following is a match for my regex.  Can
someone tell me what makes it a match?

Regular expression run condition:
Expression=[.*(OIS-Reports|OIS-ALL)*], Label=[OIS-Client,OIS-Server]
Run condition [Regular expression match] enabling perform for step
[Trigger/call builds on other projects]

Thanks,
Eric

--
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/6ec0376a-6168-49ca-b9e5-d80a85ffd4f3%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/56D5C662.6070109%40cd-adapco.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins world 2016 registration ?

2016-03-01 Thread Yolk
Hi all,

I'd like to attend the 2016 conference in Santa Clara -CA but not sure 
where can I register ? ( No I'm not submitting anything, just want to 
attend ) Or can I just drop by and register at the venue ?

Thank you very much.

-- 
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/23cd054b-abc8-4d9a-8ab6-b868e2051ee4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Eric Smalling
Has anyone posted a Docker Hub image yet?  (I see several "jenkins2" named 
ones out there, but the dates on them lead me to believe they are not this.)


On Monday, February 29, 2016 at 5:39:22 PM UTC-6, R Tyler Croy wrote:
>
> As I mention in this blog post: 
> https://jenkins-ci.org/blog/2016/02/29/jenkins2-alphas/ 
>
> The first Jenkins 2.0 alpha downloads are available (yay!). You can read 
> more 
> about it on the 2.0 landing page (https://jenkins-ci.org/2.0/), which 
> also 
> includes the links the download various native packages of the 2.0 alpha. 
>
>
> I'm going to be linking to this thread from the page and blog post for 
> feedback, so by all means, download it and play around with it! 
>
>
> 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/ac966b8d-640b-4278-a8d5-115ef7c77baa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Conditional Step Regular Expression Match

2016-03-01 Thread Eric Fetzer
Thanks for your response Matthew!  With your change, we seem to be a lot 
closer.  I have from 1 to 4 conditional projects to call.  In this 
particular build, I'm telling it to do 2 of the 4.  Here's what it did 
based on the condition:

Regular expression run condition: Expression=[.*(NAP-Client|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server]
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]   *Didn't go into this one 
which it should have*
Regular expression run condition: Expression=[.*(NAP-Server|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server] *Went into this one as it should have*
Run condition [Regular expression match] enabling perform for step 
[Trigger/call builds on other projects]
Returning node parameter for master
Waiting for the completion of *NAP-Server* 

*NAP-Server #98*  completed. 
Result was SUCCESS
Regular expression run condition: Expression=[.*(NAP-Reports|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server]*Didn't go in as it shouldn't have*
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects] 
Regular expression run condition: Expression=[.*(CAS|NAP-ALL)+], 
Label=[NAP-Client,NAP-Server] *Didn't go in as it shouldn't have*
Run condition [Regular expression match] preventing perform for step 
[Trigger/call builds on other projects]
Warning: you have no plugins providing access control for builds, so 
falling back to legacy behavior of permitting any downstream builds to be 
triggered

Is it having a problem with the ".*" because NAP-Client occurs at the 
beginning of the line?


On Monday, February 29, 2016 at 2:32:08 PM UTC-7, Eric Fetzer wrote:

> I don't understand why the following is a match for my regex.  Can someone 
> tell me what makes it a match?
>
> Regular expression run condition: Expression=[.*(OIS-Reports|OIS-ALL)*], 
> Label=[OIS-Client,OIS-Server]
> Run condition [Regular expression match] enabling perform for step 
> [Trigger/call builds on other projects]
>
> Thanks,
> Eric
>

-- 
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/6ec0376a-6168-49ca-b9e5-d80a85ffd4f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Kohsuke Kawaguchi
2016-03-01 1:11 GMT-08:00 Nicolas Geraud :

> I think that tabs should be on a single row with left and right arrow to
> display hidden tabs like in
> https://www.google.com/design/spec/components/tabs.html#tabs-usage.
>
> Is this has been discussed elsewhere ?
>

 I assume you mean the tabs in the configuration pages?

Yes, there have been a lot of conversations about these things, mainly in
the dev list I believe.


-- 
Kohsuke Kawaguchi

-- 
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/CAN4CQ4wa%2BU6jPw8eHuXMr8%3DYfzG%3DcBp_OUDX%2BR05MW_pzpYWzA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Conditional Step Regular Expression Match

2016-03-01 Thread Matthew.Webber
A regex that starts with .* and ends with (opt1|opt2)* will always match all 
strings.
I think you want something like .*( opt1|opt2)+ where the trailing + means at 
least one thing from opt1|opt2 must be present.

From: jenkinsci-users@googlegroups.com 
[mailto:jenkinsci-users@googlegroups.com] On Behalf Of Eric Fetzer
Sent: 01 March 2016 14:21
To: Jenkins Users
Subject: Re: Conditional Step Regular Expression Match

Thanks for the reply Eric!  Sorry, the square brackets are just from the 
Jenkins output.  My regex's look like this (4 single conditional steps based on 
the label passed in build.apps):

.*(NAP-Client|NAP-ALL)*
.*(NAP-Server|NAP-ALL)*
.*(NAP-Reports|NAP-ALL)*
.*(CAS|NAP-ALL)*

In this particular case, I passed in build.apps='NAP-Client,NAP-Server'

So it should go in and trigger the build associated with these two regex's.  
But what it does is go into all 4 and build them.  I'm guessing I could put 
anything at all in the Label and it would match for all of these conditions 
because of a mistake I'm making in my regex.

Thanks,
Eric

On Monday, February 29, 2016 at 2:32:08 PM UTC-7, Eric Fetzer wrote:
I don't understand why the following is a match for my regex.  Can someone tell 
me what makes it a match?

Regular expression run condition: Expression=[.*(OIS-Reports|OIS-ALL)*], 
Label=[OIS-Client,OIS-Server]
Run condition [Regular expression match] enabling perform for step 
[Trigger/call builds on other projects]

Thanks,
Eric
--
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/8b0a1962-9ebe-4623-bc34-9e9e20d1fbab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

-- 
This e-mail and any attachments may contain confidential, copyright and or 
privileged material, and are for the use of the intended addressee only. If you 
are not the intended addressee or an authorised recipient of the addressee 
please notify us of receipt by returning the e-mail and do not use, copy, 
retain, distribute or disclose the information in or attached to the e-mail.
Any opinions expressed within this e-mail are those of the individual and not 
necessarily of Diamond Light Source Ltd. 
Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments 
are free from viruses and we cannot accept liability for any damage which you 
may sustain as a result of software viruses which may be transmitted in or with 
the message.
Diamond Light Source Limited (company no. 4375679). Registered in England and 
Wales with its registered office at Diamond House, Harwell Science and 
Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom

-- 
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/6836E1DC2DDC174C9D64B7860E5AF5FCA90F7519%40EXCHMBX01.fed.cclrc.ac.uk.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread kondarreddy

I am behind proxy and a blank popup (I guess the registration screen) is 
blocking me from accessing Jenkins web interface. Can you please suggest a 
work around.

Thank you


On Monday, February 29, 2016 at 5:39:22 PM UTC-6, R Tyler Croy wrote:
>
> As I mention in this blog post: 
> https://jenkins-ci.org/blog/2016/02/29/jenkins2-alphas/ 
>
> The first Jenkins 2.0 alpha downloads are available (yay!). You can read 
> more 
> about it on the 2.0 landing page (https://jenkins-ci.org/2.0/), which 
> also 
> includes the links the download various native packages of the 2.0 alpha. 
>
>
> I'm going to be linking to this thread from the page and blog post for 
> feedback, so by all means, download it and play around with it! 
>
>
> 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/b7b6c04f-db8f-48d4-98cd-a05f2572e4ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Running a Jenkins job from a shell script

2016-03-01 Thread Warren Postma
Why don't you have your script execute some HTTP action with CURL which 
might trigger Jenkins?

W

On Tuesday, March 1, 2016 at 9:35:30 AM UTC-5, Alan Evangelista wrote:

> I want to execute a Jenkins job run from a script, which is itself cloned 
> from a git repo and called 
> in a shell build step by another Jenkins job. I need a Jenkins user and 
> Jenkins user API token to run 
> a Jenkins job via its HTTP API. Is it possible to access the Jenkins user 
> and user API token in the 
> script 
>

-- 
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/f7682c27-2254-488d-8ca5-635844640a95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Archiving artifacts incomplete

2016-03-01 Thread Jinny Pan

I tried use *bin/***, also unchecked "use default excludes" in advanced 
tab, it turns out all files were archived. Thank you so much for your help! 


On Monday, February 29, 2016 at 5:34:03 PM UTC-6, Baptiste Mathus wrote:
>
> Yes, archiving is quite standard, but there could be some variation or 
> plugin around it and we don't want to lose time on the wrong assumption. 
>
> Anyway, well, I'd guess *you* actually excluded those file with that 
> pattern: *bin/**/*.**
>
> Maybe try simply with *bin/*** instead?
>
> 2016-03-01 0:27 GMT+01:00 Jinny Pan :
>
>> It has matrix project configuration. I think archiving artifacts is 
>> out-of-box feature in Jenkins, I didn't install any plugin for this part of 
>> functionality. I checked "use default excludes". All the files have no 
>> extension in bin/ folder. So it excludes all files without extension?
>>
>> On Monday, February 29, 2016 at 4:50:10 PM UTC-6, Baptiste Mathus wrote:
>>>
>>> Please provide some context. Jenkins has 1000+ plugins. Are you using a 
>>> freestyle job?
>>>
>>> Did you have a look in the advanced options of the artifact archiving? 
>>> Namely, the "default excludes"? What are the file extensions in your bin/ 
>>> folder?
>>>
>>> 2016-02-29 23:23 GMT+01:00 Jinny Pan :
>>>

 I have a building plan trying to archive several folders of files as 
 artifacts, such as "bin/**/*.*, lib/**/*.*, modules/**/*.*, 
 tools/artifact/**/*.*". But after build finished, I checked the build 
 artifacts in Jenkins, there is no folder "bin". I also checked the build 
 workspace, the bin directory and files were successfully compiled. I also 
 cannot find bin directory in archive folder of build record directory. 

 Does anybody have the same issue before? I doubt there is size 
 limitation of artifacts, since my bin directory supposed to have over 
 twenty of big binary executable files. Thanks in advance!

 -- 
 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/2892eb24-8ed9-473e-87bd-29dc62c0b296%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/631314c6-f2da-4712-8f34-51b6cb49bb11%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/884cc5a3-b277-439b-bcae-164d03cd4481%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Running a Jenkins job from a shell script

2016-03-01 Thread Alan Evangelista

I want to execute a Jenkins job run from a script, which is itself cloned from 
a git repo and called
in a shell build step by another Jenkins job. I need a Jenkins user and Jenkins 
user API token to run
a Jenkins job via its HTTP API. Is it possible to access the Jenkins user and user API token in the 
script
mentioned above? I thought they would be available via shell environment variable, but it seems it 
is not.


ps: I do not want to use Jenkins UI to setup the first Jenkins Job execution 
from the second.

--
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/56D5A63C.2080408%40linux.vnet.ibm.com.
For more options, visit https://groups.google.com/d/optout.


Re: Conditional Step Regular Expression Match

2016-03-01 Thread Eric Fetzer
Thanks for the reply Eric!  Sorry, the square brackets are just from the 
Jenkins output.  My regex's look like this (4 single conditional steps 
based on the label passed in build.apps):

.*(NAP-Client|NAP-ALL)*
.*(NAP-Server|NAP-ALL)*
.*(NAP-Reports|NAP-ALL)*
.*(CAS|NAP-ALL)*

In this particular case, I passed in build.apps='NAP-Client,NAP-Server'

So it should go in and trigger the build associated with these two 
regex's.  But what it does is go into all 4 and build them.  I'm guessing I 
could put anything at all in the Label and it would match for all of these 
conditions because of a mistake I'm making in my regex.

Thanks,
Eric

On Monday, February 29, 2016 at 2:32:08 PM UTC-7, Eric Fetzer wrote:

> I don't understand why the following is a match for my regex.  Can someone 
> tell me what makes it a match?
>
> Regular expression run condition: Expression=[.*(OIS-Reports|OIS-ALL)*], 
> Label=[OIS-Client,OIS-Server]
> Run condition [Regular expression match] enabling perform for step 
> [Trigger/call builds on other projects]
>
> Thanks,
> Eric
>

-- 
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/8b0a1962-9ebe-4623-bc34-9e9e20d1fbab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins, Subversion plugin+ SVNKIT+ JVM garbage collection delay, leads to svn update failure.

2016-03-01 Thread Mark Waite
Java 7 has a try with resource syntax to reduce file handle leaks, but many
Jenkins plugins support Java versions prior to Java 7.  Jenkins on Linux
has a file leak detection plugin that can help with the debugging.
Unfortunately, that plugin does not work on Windows.

Mark Waite

On Tue, Mar 1, 2016 at 7:14 AM Warren Postma 
wrote:

> We are having a problem on Jenkins server on Windows, that has Subversion
> plugin, which uses a native Java SVNKIT instead of the "real" subversion
> binaries. This has always struck me as problematic, as there have always
> (for the last 3 years) been weird things during checkouts and updates that
> only occurred in svnkit, that were not reproducible for me with main svn
> client. I am experiencing one of those now, it happens once every 24 to 48
> hours, about one in 20 times that our main unit-test job runs.  When I use
> some tools to inspect the situation, it is the java.exe (jvm) that hosts
> the Jenkins task itself, which is holding onto a file-handle of a .tmp file
> inside the .svn folder of my workspace/working-copy, which causes it to
> fail.  It detects a lock after the first chance failure, then the fresh
> working copy fails to check out as well.
>
> Java.exe will not release its lock on
> c:\workspace\smoketest-delta2\.\.svn\svn.e130882e-5301-0010-8f8c-a3d25f9ae1e6.tmp
> until I basically shut down the Jenkins service.
>
> here's the log output:
>
> Started by an SCM change
> Building in workspace c:\workspace\smoketest-delta2
> Updating *http://svn.myorg.biz/core/trunk/powerserver*
>  at revision
> '2016-02-29T14:36:39.012 -0500'
> Workspace appear to be locked, so getting a fresh workspace
> Cleaning local Directory .
> java.nio.file.FileSystemException:
> c:\workspace\smoketest-delta2\.\.svn\svn.e130882e-5301-0010-8f8c-a3d25f9ae1e6.tmp:
> The process cannot access the file because it is being used by another
> process.
>
> at sun.nio.fs.WindowsException.translateToIOException(Unknown Source)
> at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
> at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
> at sun.nio.fs.WindowsFileSystemProvider.implDelete(Unknown Source)
> at sun.nio.fs.AbstractFileSystemProvider.delete(Unknown Source)
> at java.nio.file.Files.delete(Unknown Source)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
> at java.lang.reflect.Method.invoke(Unknown Source)
> at hudson.Util.deleteFile(Util.java:255)
> at hudson.Util.deleteRecursive(Util.java:318)
> at hudson.Util.deleteContentsRecursive(Util.java:220)
> at hudson.Util.deleteRecursive(Util.java:309)
> at hudson.Util.deleteContentsRecursive(Util.java:220)
> at hudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:81)
> at
> hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162)
> at
> hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:170)
> at
> hudson.scm.subversion.UpdateUpdater$TaskImpl.perform(UpdateUpdater.java:183)
> at
> hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162)
> at hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:988)
> at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:969)
> at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:945)
> at hudson.FilePath.act(FilePath.java:990)
> at hudson.FilePath.act(FilePath.java:968)
> at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:894)
> at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:830)
> at hudson.scm.SCM.checkout(SCM.java:485)
> at hudson.model.AbstractProject.checkout(AbstractProject.java:1269)
> at
> hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:607)
> at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
> at
> hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
> at hudson.model.Run.execute(Run.java:1738)
> at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
> at hudson.model.ResourceController.execute(ResourceController.java:98)
> at hudson.model.Executor.run(Executor.java:410)
> [description-setter] Description set:
> Sending e-mails to: dev...@com
> Finished: FAILURE
>
> Has anyone got any ideas? I'm so frustrated that I am thinking of writing
> a new Subversion plugin that shells out to a REAL Subversion binary and
> does the SVN updates using that, because I am floored that the design of
> SVNkit makes it even POSSIBLE to not let go of file handles.  Doesn't java
> have a try-with-resource syntax just for this purpose?  How is it possible
> that file handles are not immediately released?  If anyone has ever
> debugged SVNKIT, and has any advice, it would be welcomed. I'm a C#, C++,
> Pascal 

Jenkins, Subversion plugin+ SVNKIT+ JVM garbage collection delay, leads to svn update failure.

2016-03-01 Thread Warren Postma
We are having a problem on Jenkins server on Windows, that has Subversion 
plugin, which uses a native Java SVNKIT instead of the "real" subversion 
binaries. This has always struck me as problematic, as there have always 
(for the last 3 years) been weird things during checkouts and updates that 
only occurred in svnkit, that were not reproducible for me with main svn 
client. I am experiencing one of those now, it happens once every 24 to 48 
hours, about one in 20 times that our main unit-test job runs.  When I use 
some tools to inspect the situation, it is the java.exe (jvm) that hosts 
the Jenkins task itself, which is holding onto a file-handle of a .tmp file 
inside the .svn folder of my workspace/working-copy, which causes it to 
fail.  It detects a lock after the first chance failure, then the fresh 
working copy fails to check out as well.  

Java.exe will not release its lock on 
c:\workspace\smoketest-delta2\.\.svn\svn.e130882e-5301-0010-8f8c-a3d25f9ae1e6.tmp
 
until I basically shut down the Jenkins service.

here's the log output:

Started by an SCM change
Building in workspace c:\workspace\smoketest-delta2
Updating *http://svn.myorg.biz/core/trunk/powerserver* 
 at revision 
'2016-02-29T14:36:39.012 -0500'
Workspace appear to be locked, so getting a fresh workspace
Cleaning local Directory .
java.nio.file.FileSystemException: 
c:\workspace\smoketest-delta2\.\.svn\svn.e130882e-5301-0010-8f8c-a3d25f9ae1e6.tmp:
 
The process cannot access the file because it is being used by another 
process.

at sun.nio.fs.WindowsException.translateToIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
at sun.nio.fs.WindowsFileSystemProvider.implDelete(Unknown Source)
at sun.nio.fs.AbstractFileSystemProvider.delete(Unknown Source)
at java.nio.file.Files.delete(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at hudson.Util.deleteFile(Util.java:255)
at hudson.Util.deleteRecursive(Util.java:318)
at hudson.Util.deleteContentsRecursive(Util.java:220)
at hudson.Util.deleteRecursive(Util.java:309)
at hudson.Util.deleteContentsRecursive(Util.java:220)
at hudson.scm.subversion.CheckoutUpdater$1.perform(CheckoutUpdater.java:81)
at 
hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162)
at 
hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:170)
at 
hudson.scm.subversion.UpdateUpdater$TaskImpl.perform(UpdateUpdater.java:183)
at 
hudson.scm.subversion.WorkspaceUpdater$UpdateTask.delegateTo(WorkspaceUpdater.java:162)
at hudson.scm.SubversionSCM$CheckOutTask.perform(SubversionSCM.java:988)
at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:969)
at hudson.scm.SubversionSCM$CheckOutTask.invoke(SubversionSCM.java:945)
at hudson.FilePath.act(FilePath.java:990)
at hudson.FilePath.act(FilePath.java:968)
at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:894)
at hudson.scm.SubversionSCM.checkout(SubversionSCM.java:830)
at hudson.scm.SCM.checkout(SCM.java:485)
at hudson.model.AbstractProject.checkout(AbstractProject.java:1269)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.defaultCheckout(AbstractBuild.java:607)
at jenkins.scm.SCMCheckoutStrategy.checkout(SCMCheckoutStrategy.java:86)
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:529)
at hudson.model.Run.execute(Run.java:1738)
at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43)
at hudson.model.ResourceController.execute(ResourceController.java:98)
at hudson.model.Executor.run(Executor.java:410)
[description-setter] Description set: 
Sending e-mails to: dev...@com
Finished: FAILURE

Has anyone got any ideas? I'm so frustrated that I am thinking of writing a 
new Subversion plugin that shells out to a REAL Subversion binary and does 
the SVN updates using that, because I am floored that the design of SVNkit 
makes it even POSSIBLE to not let go of file handles.  Doesn't java have a 
try-with-resource syntax just for this purpose?  How is it possible that 
file handles are not immediately released?  If anyone has ever debugged 
SVNKIT, and has any advice, it would be welcomed. I'm a C#, C++, Pascal 
developer with only minimal Java knowledge, but I'm quite annoyed at SVNKIT 
for doing this, and perhaps, since I love Jenkins, this is a way I can help 
the Jenkins community out.

The Server is running Windows Server 2012 R2. Windows Search feature is NOT 
installed.  Windows Endpoint Protection (Defender) realtime protection is 
disabled, and exclusions are also defined for good measure.

Jenkins version is 1.647,  Subversion plugin version is 2.5.7.

I am not sure how to configure 

Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Maciej Jaros

Dirk Heinrichs (2016-03-01 08:31):

Am 01.03.2016 um 00:39 schrieb R. Tyler Croy:


You can read more
about it on the 2.0 landing page (https://jenkins-ci.org/2.0/)


The link to "the 2.0 plan" on this page is dead.


The link:
https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+2.0

Fix:
https://github.com/jenkins-infra/jenkins.io/pull/97

Regards,
Nux

--
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/56D590CD.2080501%40mol.com.pl.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins 2.0 alpha release available

2016-03-01 Thread Nicolas Geraud
I think that tabs should be on a single row with left and right arrow to 
display hidden tabs like in 
https://www.google.com/design/spec/components/tabs.html#tabs-usage.

Is this has been discussed elsewhere ?

Le mardi 1 mars 2016 00:39:22 UTC+1, R Tyler Croy a écrit :
>
> As I mention in this blog post: 
> https://jenkins-ci.org/blog/2016/02/29/jenkins2-alphas/ 
>
> The first Jenkins 2.0 alpha downloads are available (yay!). You can read 
> more 
> about it on the 2.0 landing page (https://jenkins-ci.org/2.0/), which 
> also 
> includes the links the download various native packages of the 2.0 alpha. 
>
>
> I'm going to be linking to this thread from the page and blog post for 
> feedback, so by all means, download it and play around with it! 
>
>
> 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/be987a31-a29b-4991-9c7f-75ad4b052d04%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.