Re: Poll git removes build artifacts/clean repository on node workspace

2023-01-18 Thread Vladimir Zak
Hello,

It deletes the files even if the polling did not find any change and the
job did not start. So the step Clean should not be executed (in current
Jenkins it is like that).

Thank you.

Vladimir



st 18. 1. 2023 v 8:35 odesílatel 'Björn Pedersen' via Jenkins Users <
jenkinsci-users@googlegroups.com> napsal:

>
>
> zakyn schrieb am Dienstag, 17. Januar 2023 um 16:57:45 UTC+1:
> Hello,
> thank you.
>
> The job is defined as a jenkinsfile with the polling and git checkout and
> other build steps.
> The snippet of jenkinsfile is below.
>
> After deeper investigation just at the time when polling is executed
> (every hour) the build files from the workspace on the node
> are removed and the repository stays there.
>
> We are using the artifacts but sometimes you need some intermediate files
> that's why we do not delete workspace after job but before.
>
> We are migrating from jenkins2.222.3 (everything works)  -> 2.375.2
>
> Thank you for your help.
>
> Vladimir
>
> ---
> Jenkinsfile part:
>
> triggers{
> pollSCM('@hourly')
> }
>
>stage('Clean workspace'){
>
> steps{
> cleanWs deleteDirs: true, patterns: [[pattern:
> '**/.git/**', type: 'EXCLUDE']]
> }
> }
>
>
> I guess the polling triggers the job and then the deletion is expected.
> --
> 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/5bb24922-02c7-462c-9725-3411e47f966fn%40googlegroups.com
> 
> .
>
> --
> 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/d76cbd1d-31c9-4923-bd9d-c1f9ab6600f5n%40googlegroups.com
> 
> .
>

-- 
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/CAHRFW7j%2B3%3Dr8eVSRhmRHDXvpL%2B%3DTOs%3DTjqds_poB0kXQ41JCew%40mail.gmail.com.


Re: Poll git removes build artifacts/clean repository on node workspace

2023-01-17 Thread Vladimir Zak
Hello,
thank you.

The job is defined as a jenkinsfile with the polling and git checkout and
other build steps.
The snippet of jenkinsfile is below.

After deeper investigation just at the time when polling is executed (every
hour) the build files from the workspace on the node
are removed and the repository stays there.

We are using the artifacts but sometimes you need some intermediate files
that's why we do not delete workspace after job but before.

We are migrating from jenkins2.222.3 (everything works)  -> 2.375.2

Thank you for your help.

Vladimir

---
Jenkinsfile part:

triggers{
pollSCM('@hourly')
}

   stage('Clean workspace'){

steps{
cleanWs deleteDirs: true, patterns: [[pattern:
'**/.git/**', type: 'EXCLUDE']]
}
}

stage('Checkout Git'){
steps{
checkout(
[$class: 'GitSCM',
branches: [[name: "remotes/origin/${BUILD_BRANCH}"]],
browser: [
$class: 'GitWeb',
repoUrl: 'URL'],
doGenerateSubmoduleConfigurations: false,
extensions: [
[$class: 'DisableRemotePoll'],
[$class: 'CleanBeforeCheckout'],
[$class: 'CheckoutOption', timeout: 120]],
submoduleCfg: [],
userRemoteConfigs: [
[url: 'URL']
]
]
)
}
}

stage('another setp'){
.









út 17. 1. 2023 v 16:23 odesílatel 'Björn Pedersen' via Jenkins Users <
jenkinsci-users@googlegroups.com> napsal:

>
>
> zakyn schrieb am Dienstag, 17. Januar 2023 um 10:13:21 UTC+1:
> Hello,
> we have a problem that polling git clean the repository in workspace on
> the node.
>
> Steps:
> 1. clone git repository  and  build
> 2. build artifacts are in workspace on the node
> 3. press poll smc button -> build artifacts are removed from workspace on
> the node and the clean repository is still available.
>
> Could you please help me how to get a rid of this behavior?
>
>
> First:
> You should always consider workspaces ephemeral (they can get
> cleaned/removed by jenkins at anytime(if not in use).
> If you want to keep artifacts then use an archive artifacts step or push
> them to some other repo (by scp, upload, whatever...) as appropriate.
>
> If you want more help, please specify exactly how your job is configured.
>
> Thank you.
>
> Vladimir
>
> --
> 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/5bb24922-02c7-462c-9725-3411e47f966fn%40googlegroups.com
> 
> .
>

-- 
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/CAHRFW7in_%2BYoV1kFydpBobrzJca5B%2BRjbU8ouWuXfpsTepUZOA%40mail.gmail.com.


Re: Is there a way how to use template from email extension template plugin(emailexttemplates) in pipeline?

2019-07-09 Thread Vladimir Zak
Hi, thanks.

Is there a way to have a email templates in files and then using some
scripting to fill emailext pipeline steps with the predefined body,
subject, recepients,...

Thanks

Vladimir

Dne út 9. čvc 2019 16:30 uživatel Slide  napsal:

> There is not currently a way to do this.
>
> On Tue, Jul 9, 2019 at 5:16 AM zakyn  wrote:
>
>> Hello,
>>
>> we are using the email extension template plugin (
>> https://plugins.jenkins.io/emailext-template) where we can define
>> different email templates and then send them.
>>
>> Is there a way how we could use it in pipeline please (select predefined
>> template and send emails)?
>>
>> Thank you.
>>
>> Vladimir
>>
>> --
>> 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/a0b706c5-014c-45e0-91d6-3aa39e9ad97d%40googlegroups.com
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
> --
> Website: http://earl-of-code.com
>
> --
> 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/CAPiUgVeKtZoVTRAMwywopmEdmDRuh1dTSa%3DhrY9ra3NDbG%3D3dQ%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/CAHRFW7jvY4Wvak8rHuTG8BDPRWc9C36btXVyr7Pva6vih%3DoRrQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Difference between MSBuild environments, Jenkins - not Jenkins

2019-06-28 Thread Vladimir Zak
Hello,

Could you please share your pipeline code. We are using the pipelines for
C# builds without problems.

Thanks

Vladimir

pá 28. 6. 2019 v 20:02 odesílatel Glenn Jones  napsal:

> Yes, I am runing as thr same user that Jenkins is running as. I think I
> might try to run my MSBuild program without using PowerShell. that would
> take out any of the PowerShell items from the the problem. I'll give that a
> try on Monday Thanks
>
> On Fri, Jun 28, 2019 at 1:21 PM LUrban  wrote:
>
>> 2 things come to mind, one, the Jenkins PowerShell plugin runs the script
>> with a -noprofile, so your profile when running it locally may be adding
>> some modules or something your not getting. two, what user is the Jenkins
>> agent service running as (assuming you set it as a service)? if it is left
>> as the default, it is running as system and thus has limited capabilities;
>> I run it as a local administrative account.
>>
>> On Friday, June 28, 2019 at 10:23:07 AM UTC-6, Glenn Jones wrote:
>>>
>>> I am trying to run a build of a C# solution in a Jenkins pipeline and am
>>> having some trouble. The step that fails is a PowerShell script that runs
>>> my C# program that runs the actual build. When I run the build outside of
>>> Jenkins, or on the Jenkins server it builds just fine. Same with running
>>> the MSBuild anywhere on this server, either just an MSBuild, using the
>>> PowerShell script or running just my build program. The problem comes when
>>> I try to run it in Jenkins.
>>>
>>> I get the following errors when it is run inside Jenkins:
>>>
>>>ResolveAssemblyReference: : Warning
>>> C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1605,
>>> 5)Could not resolve this reference. Could not locate the assembly
>>> "Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral,
>>> PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL".
>>>  Check to make sure the assembly exists on disk. If this reference is
>>> required by your code, you may get compilation errors.
>>> ResolveAssemblyReference: : Warning
>>> C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1605,
>>> 5)Could not resolve this reference.  Could not locate the
>>> assembly "System.Web.Mvc, Version=4.0.0.0, Culture=neutral,
>>> PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL". Check
>>>   to make sure the assembly exists on disk. If this reference is
>>> required by your code, you may get compilation errors.
>>> ResolveAssemblyReference: : Warning
>>> C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1605,
>>> 5)Could not resolve this reference.  Could not locate the
>>> assembly "System.Web.WebPages, Version=2.0.0.0, Culture=neutral,
>>> PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL".
>>> Check to make sure the assembly exists on disk. If this reference is
>>> required by your code, you may get compilation errors.
>>>Csc: : ERROR Attributes\ExtendedMaxLengthAttribute.cs(8,22): The
>>> type or namespace name 'Mvc' does not exist in the namespace 'System.Web'
>>> (are   you missing an assembly reference?)
>>>Csc: : ERROR Attributes\ExtendedMaxLengthAttribute.cs(11,68): The
>>> type or namespace name 'IClientValidatable' could not be found (are you
>>> missing a using directive or an assembly
>>> reference?)
>>>Csc: : ERROR Models\ReportModel.cs(7,21): The type or namespace
>>> name 'Reporting' does not exist in the namespace 'Microsoft' (are you
>>> missing an   assembly reference?)
>>>Csc: : ERROR Attributes\ExtendedMaxLengthAttribute.cs(55,80): The
>>> type or namespace name 'ModelMetadata' could not be found (are you missing
>>> a   using directive or an assembly reference?)
>>>Csc: : ERROR Attributes\ExtendedMaxLengthAttribute.cs(55,104):
>>> The type or namespace name 'ControllerContext' could not be found (are you
>>> missing a   using directive or an assembly
>>> reference?)
>>>Csc: : ERROR Attributes\ExtendedMaxLengthAttribute.cs(55,28): The
>>> type or namespace name 'ModelClientValidationRule' could not be found (are
>>> you   missing a using directive or an assembly
>>> reference?)
>>>Csc: : ERROR Models\ReportModel.cs(13,21): The type or namespace
>>> name 'ReportParameter' could not be found (are you missing a using
>>> directive or an assembly reference?)
>>>Csc: : ERROR Models\ReportModel.cs(71,22): The type or namespace
>>> name 'ReportParameter' could not be found (are you missing a using
>>> directive or an assembly reference?)
>>>Csc: : ERROR Models\EnrollmentBase.cs(137,23): The type
>>> 'System.Web.Mvc.IClientValidatable' is defined in an assembly that is not
>>> referenced. You must

Re: Script for backing up Jenkins

2018-10-16 Thread Vladimir Zak
Hi,
Try ThinBackup plugin.

Vladimír

Dne út 16. 10. 2018 15:33 uživatel  napsal:

> Hello,
>
> We are using Open Source Jenkins.  We want to backup the configuration and
> any changes happening in Jenkins everyday for recovery purpose.  Is there
> any scripts available for this purpose?  Jenkins is on Linux VM.
>
> --
> 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/1e628851-fdad-46fe-b71c-ce5a4c494a17%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/CAHRFW7ipm-2fU%3D%3DaaZTeK6hMhpV0grQgbTbsH_j6g%3D4cmGnBGw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Windows Agent As a Service

2018-10-15 Thread Vladimir Zak
Download agent and as admin run agent.jar -install . It should create the
service.

Or it was like that in the past.

Vladimír

Dne po 15. 10. 2018 22:35 uživatel Mark Bidewell 
napsal:

> Thanks!  but how do you make it run as a service from the command-line?
> done of the exes seem to be installed?
>
> On Monday, October 15, 2018 at 4:31:03 PM UTC-4, Mark Waite wrote:
>>
>> The deprecation of Java Web Start doesn't deprecate the protocols that a
>> Jenkins agent can use to connect to the Jenkins server.  JNLP works just
>> fine with Java 11 to connect an agent.
>>
>> The convenience of clicking the "Web Start" button on the UI won't work
>> with Java 11, but the command line provided in the agent start page
>> continues to work.
>>
>> Mark Waite
>>
>> On Mon, Oct 15, 2018 at 2:18 PM Mark Bidewell  wrote:
>>
>>> With Java Web Start deprecated and slated for removal, what is the
>>> canonical way to create a Windows Service agent?
>>>
>>> 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-use...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/jenkinsci-users/439b2186-1f70-46bd-b0f8-c54512eb428b%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/06519949-d6f0-49dd-9349-62b56b776e4f%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/CAHRFW7iDYGVnQoqQt6g8wSgvLM1pL5JHWC2-_FqBop%3Djr8zDCA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Hello Jenkins users.... Help needed for installing the Jenkins

2018-04-26 Thread Vladimir Zak
Hello,
On Windows you need to run cmd as admin, without that you do not have
enough rights.

V.


Dne čt 26. 4. 2018 1:25 uživatel Slide  napsal:

> There are many tutorials on running Jenkins, please use Google and search
> for one of the many. My guess is the path to the jar file is incorrect that
> you are passing.
>
> On Wed, Apr 25, 2018 at 4:23 PM  wrote:
>
>> Hello Jenkins user,
>>
>> I need help to installing the Jenkins.. I have been trying this code in
>> command promt 'java -jar C:\user.. file path.jenkins.war'
>>
>> after pressing enter it shows the following message..
>>
>> unable to access the jar file..
>>
>> What should I do?? Thanks in advance
>>
>> Java lover...
>>
>> --
>> 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/b2cb4f00-737a-4275-9afe-90c4031dbacf%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/CAPiUgVdQJWWXA2gtExwYfikp82X0kGKWnOiW4__LN5s0Amy6VA%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/CAHRFW7jAgW8jqECjuFpW2N3PFA1g9PD3koxZ0DK8w7t7R3opTw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Build not triggered when change is pushed to bitbucket

2016-01-21 Thread Vladimir Zak
Hello,

I use the mask plugin and standard mercurial plugin for bitbucket. Polling is 
working without any problem. I do not use webhook, it is not necessary.

But maybe your problem could be in proxy if you are behind it. If yes, I would 
suggest to add proxy to the connection of hg.

Here is my setting for connecting to bitbucket.

I hope it will help you.

Vladimir





From: slide.o@gmail.com
Date: Thu, 21 Jan 2016 16:07:21 +
Subject: Re: Build not triggered when change is pushed to bitbucket
To: jenkinsci-users@googlegroups.com

Perhaps it would help if you gave some more information about your 
configuration, things you have tried, exact error messages, etc. Your request 
is somewhat lacking in that regard.

On Thu, Jan 21, 2016, 08:44 Rohit Sharma  wrote:
Hello Everyone,
I am using the jenkins version 1.625.3. And i am facing issues in integrating 
jenkins with bitbucket. What all i need to do is to trigger a job when a change 
is pushed to bitbucket. But unfortunately its not working and I am continuously 
getting the 500 error response code on webhook configured on bitbucket.Please 
help me out in this.
ThanksRohit




-- 

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/9f9a6a3d-c504-45c4-8239-79d129ee3e6a%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/CAPiUgVei-upXz0sX_93WRZj9C-bUPW%2BV8KF%2BST_KSciaDe8z0Q%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/DUB122-W19405579CE7E2C74657397ACC40%40phx.gbl.
For more options, visit https://groups.google.com/d/optout.


RE: Run job on ALL cloud (i.e. Docker) slaves including a given label

2016-01-20 Thread Vladimir Zak
Hi,
I set it to our local cloud service a year ago. I would start the images in one 
job and then I use the "3rdparty_all" job to run the things there.
But with Docker I am not much familiar because we are "windows company".
I hope this could help.
Best regards,
Vladimir




Date: Wed, 20 Jan 2016 00:42:06 -0800
From: jule...@googlemail.com
To: jenkinsci-users@googlegroups.com
Subject: Re: Run job on ALL cloud (i.e. Docker) slaves including a given label

Hi Vladimir,
thank you very much for your detailed explanation. I just set up my Jenkins 
according to your screenshots.The problem I am having is, that the Node label 
parameter factory (when given something like docker&) seems to not be 
able to recognize the node labels of unstarted Docker images.I would like to 
have the needed images to be automatically started (and stopped once they are 
finished). I think unstarted images do not even have a real Nodename that can 
be passed as a parameter.
Do you use this setup with Docker or other clouds?
Thanks,Julianus

Am Dienstag, 19. Januar 2016 18:17:59 UTC+1 schrieb zakyn:









Hello,

I just set it without any problem.

You need one job which will trigger the job(s) on all slaves on all nodes with 
given label(s).

3rdparty_all job triggeres 3rdparty job on all nodes which fit "3rdparty" 
labels.

See attachments. I hope it is clear.

Best regards,

Vladimir






Date: Tue, 19 Jan 2016 08:13:43 -0800
From: jul...@googlemail.com
To: jenkins...@googlegroups.com
Subject: Run job on ALL cloud (i.e. Docker) slaves including a given label

Hello everybody,
currently I am desperately looking for a way to create a Jenkins job that, when 
launched, will be executed concurrentlyon ALL slaves matching a label (or 
better a set of labels).Usually (but not exclusively) my slaves will be cloud 
based. That means they should be fired up automatically with the Docker plugin 
of Jenkins.
I tried some different configurations (e.g. Elastic Axis Plugin, Matrix plugin 
[and its label_expressions], Restricting job to certain slaves in its 
configuration) but either it does not work at all or Jenkins will only fire up 
the job on one slave (that matches the label) only.
The method I am looking for should work on labels because I do not want to 
click all the slaves that should be used for a certain job everytime my 
configuration changes (i.e. via a slaves axis).Has anyone found a way of doing 
what I envision?

Your help is highly appreciated.Regards,Julianus




-- 

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/9dfd9ba5-052b-4f23-9a05-fe2ab3ce17c7%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/2650806c-1d4e-47ca-97c5-16b9eec2be59%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/DUB122-W2524D5708BEF0BA2E867D0ACC20%40phx.gbl.
For more options, visit https://groups.google.com/d/optout.


RE: Run job on ALL cloud (i.e. Docker) slaves including a given label

2016-01-19 Thread Vladimir Zak







Hello,

I just set it without any problem.

You need one job which will trigger the job(s) on all slaves on all nodes with 
given label(s).

3rdparty_all job triggeres 3rdparty job on all nodes which fit "3rdparty" 
labels.

See attachments. I hope it is clear.

Best regards,

Vladimir






Date: Tue, 19 Jan 2016 08:13:43 -0800
From: jule...@googlemail.com
To: jenkinsci-users@googlegroups.com
Subject: Run job on ALL cloud (i.e. Docker) slaves including a given label

Hello everybody,
currently I am desperately looking for a way to create a Jenkins job that, when 
launched, will be executed concurrentlyon ALL slaves matching a label (or 
better a set of labels).Usually (but not exclusively) my slaves will be cloud 
based. That means they should be fired up automatically with the Docker plugin 
of Jenkins.
I tried some different configurations (e.g. Elastic Axis Plugin, Matrix plugin 
[and its label_expressions], Restricting job to certain slaves in its 
configuration) but either it does not work at all or Jenkins will only fire up 
the job on one slave (that matches the label) only.
The method I am looking for should work on labels because I do not want to 
click all the slaves that should be used for a certain job everytime my 
configuration changes (i.e. via a slaves axis).Has anyone found a way of doing 
what I envision?

Your help is highly appreciated.Regards,Julianus




-- 

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/9dfd9ba5-052b-4f23-9a05-fe2ab3ce17c7%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/DUB122-W3509B004B6BC373FBE90C6ACC10%40phx.gbl.
For more options, visit https://groups.google.com/d/optout.


Re: Mercurial plugin - clean does not clean subrepository

2013-06-06 Thread Vladimir Zak
Hi,
did you find any report issue related to this problem? I was not able to
find it and I am not able to add it to Jira.
How did you solve this problem?

Thank you.

zakyn


2013/6/5 Igor Okulist oki...@gmail.com

 +1, I observe the same issue as well

 my guess the `hg purge --all` is not executed on sub repos


 On Thursday, May 30, 2013 6:08:16 AM UTC-7, zakyn wrote:

 Hello,

 When I user the clean build feature above the hg repository with the hg
 subrepository, the sub repository is not clean - basically it only updates
 the source code but it does not delete the files which were created during
 the previous build.

 Could you please help me? Do you have any experience with it?

 Thank you.

 zakyn

  --
 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.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: jenkins e-mail ext DEFAULT_CONTENT does not expand

2013-05-26 Thread Vladimir Zak
Hi,
I have the same problem. The strings are not replaced by URl for example -
$BUILD_URL is not replaced.

In subjects it is replaced but NOT replaced in the other places.

zakyn

$PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!$PROJECT_URL
$BUILD_URL $BUILD_URL/artifact/Installation/InstallationKit Tests

$FAILED_TESTS

Changes  [%a] %m %p${CHANGES,format= }





2013/4/24 windycity jji...@gmail.com


 Attach log.


 Jessica

 On Wednesday, April 24, 2013 4:04:04 PM UTC-5, windycity wrote:

 We are using tomcat, I have logs at 
 tomcat/apache-tomcat-6.0.35/**logs/catalina.out,
 is that the right one? But this one does not have any Jenkins error. Build
 #23 is the trouble one.

 Jessica

 On Wednesday, April 24, 2013 3:36:18 PM UTC-5, slide wrote:

 No, I mean the actual stderr type logs for the Jenkins app itself, it
 would be in different places depending on how you are running Jenkins.
 Could be in the tomcat logs, etc.


 On Wed, Apr 24, 2013 at 1:33 PM, windycity jji...@gmail.com wrote:

 By jenkins log, do you mean $JENKINS_HOME/jobs/project/**builds/#/log
 file?  If this is the file you refer, it does have build errors, but
 sending mail seems fine.

 Sending e-mails to: j...@cboe.com
 channel stopped
 Sending e-mails to: j...@cboe.com
 Email was triggered for: Failure
 Sending email for trigger: Failure
 Sending email to: j...@cboe.com
 Finished: FAILURE

 If this is not the log you refer, would you please let me know where
 should be the log file?

 Thanks much,

 Jessica



 On Wednesday, April 24, 2013 3:13:54 PM UTC-5, slide wrote:

 Do you have any errors in jenkins logs?


 On Wed, Apr 24, 2013 at 12:43 PM, windycity jji...@gmail.com wrote:

 I am looking at this file, actually, I figure

 ${JELLY_SCRIPT,template=quot;htmlquot;}

 is the problem, if I get rid of this, everything seems working,
 though I do not understand why. Somebody else put this in global
 configuration, maybe this format is wrong, maybe it should be
 ${JELLY_SCRIPT, html}?


  Following is the content of ExtendedEmailPublisher xml file from the
 root of JENKINS_HOME

 Thanks much!

 Jessica

 ?xml version='1.0' encoding='UTF-8'?
 hudson.plugins.emailext.**Exten**dedEmailPublisherDescript**or
 plugin=email-ext@2.28
   
 hudsonUrlhttp://openjdk2a:**80**81/jenkins/http://openjdk2a:8081/jenkins/
 /hudsonUrl
   adminAddressaddress not configured yet
 lt;nobodygt;/adminAddress
   useSslfalse/useSsl
   defaultContentTypetext/html/defaultContentType
   defaultSubject${MAVEN_**PREBUI**LD_VERSION} $PROJECT_NAME -
 Build # $BUILD_NUMBER - $BUILD_STATUS!/**defaultSubject**
   defaultBody$PROJECT_NAME ${MAVEN_PREBUILD_VERSION}  - Build #
 $BUILD_NUMBER - $BUILD_STATUS:#xd;
 #xd;
 Check console output at $BUILD_URL to view the results.#xd;
 #xd;
 ${JELLY_SCRIPT,template=quot;htmlquot;}/defaultBody
   maxAttachmentSize-1/**maxAtta**chmentSize
   recipientListj...@cboe.com/recipientList

   defaultReplyTo/**defaultReply**To
   overrideGlobalSettingsfalse/overrideGlobalSettings
   precedenceBulkfalse/**precede**nceBulk
   debugModefalse/debugMode
   enableSecurityfalse/**enableS**ecurity
 /hudson.plugins.emailext.**Exte**ndedEmailPublisherDescript**or



 On Wednesday, April 24, 2013 2:33:08 PM UTC-5, slide wrote:

 My apologies, I need the ExtendedEmailPublisher xml file from the
 root of JENKINS_HOME.


 On Wed, Apr 24, 2013 at 10:03 AM, windycity jji...@gmail.comwrote:


 Here attached are the global and project config files, please let
 me know what is wrong.

 Thanks much for all your help!

 Jessica


 On Wednesday, April 24, 2013 8:59:51 AM UTC-5, slide wrote:

 pre-build/post build added token
 MIME-Version: 1.0
 Content-Type: multipart/alternative;
 boundary==_Part_**8**9_9798859.1366811681215

 --=_Part_89_9798859.**136681**1681215
 Content-Type: text/plain; charset=utf-8
 Content-Transfer-Encoding: 7bit

 They are expanded the same way, so I need more information (like
 your
 global and project config XML) to try and determine the issue.

 Sent from my Windows Phone
 From: windycity
 Sent: 4/24/2013 6:54
 To: jenkins...@googlegroups.**com
 Subject: jenkins e-mail ext DEFAULT_CONTENT does not expand
 pre-build/post build added token
 I use jenkin's configuration pre-build and post build Execute
 Groovy
 System Script- command to get a token $MAVE_PREBUIL_VERSION and
 $MAVEN_POSTBUILD_MAVEN, and put this at e-mail ext plugin
 configuration. In
 both global and project session, DEFAULT_SUBJECT can extent these
 Tokens,
 but DEFAULT_CONTENT can not, is this a known issue or I am not
 using it
 right?

 $DEFAULT_SUBJECT, ${MAVEN_PREBUILD_VERSION},
 ${MAVEN_POSTBUILD_VERSION}
 Above expand the token, but following does not


 $DEFAULT_CONTENT, ${MAVEN_PREBUILD_VERSION}

 Thanks in advance,

 jessica

 --
 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 

Re: jenkins e-mail ext DEFAULT_CONTENT does not expand

2013-05-26 Thread Vladimir Zak
Hi,

I used the last one LTS version of jenkins, email-ext-plugin -
2.30.2http://cibrn02.amberg.intra:8080/pluginManager/plugin/email-ext/thirdPartyLicenses

I found only this

Email was triggered for: Before Build
Sending email for trigger: Before Build
Error evaluating token: Undefined parameter maxlines in token BUILD_LOG
Sending email to:

The new one is maxLines - after the change it seems to run OK.


Were the tokens changed? I used them for really long time heavily and I
hope it has not been changed massively.

zakyn





2013/5/26 Vladimir Zak zakvladi...@gmail.com

 Hi,
 I have the same problem. The strings are not replaced by URl for example -
 $BUILD_URL is not replaced.

 In subjects it is replaced but NOT replaced in the other places.

 zakyn

 $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!
 $PROJECT_URL
 $BUILD_URL http://$BUILD_URL/artifact/Installation/InstallationKit Tests

 $FAILED_TESTS

 Changes  [%a] %m %p${CHANGES,format= }





 2013/4/24 windycity jji...@gmail.com


 Attach log.


 Jessica

 On Wednesday, April 24, 2013 4:04:04 PM UTC-5, windycity wrote:

 We are using tomcat, I have logs at 
 tomcat/apache-tomcat-6.0.35/**logs/catalina.out,
 is that the right one? But this one does not have any Jenkins error. Build
 #23 is the trouble one.

 Jessica

 On Wednesday, April 24, 2013 3:36:18 PM UTC-5, slide wrote:

 No, I mean the actual stderr type logs for the Jenkins app itself, it
 would be in different places depending on how you are running Jenkins.
 Could be in the tomcat logs, etc.


 On Wed, Apr 24, 2013 at 1:33 PM, windycity jji...@gmail.com wrote:

 By jenkins log, do you mean $JENKINS_HOME/jobs/project/**builds/#/log
 file?  If this is the file you refer, it does have build errors, but
 sending mail seems fine.

 Sending e-mails to: j...@cboe.com
 channel stopped
 Sending e-mails to: j...@cboe.com
 Email was triggered for: Failure
 Sending email for trigger: Failure
 Sending email to: j...@cboe.com
 Finished: FAILURE

 If this is not the log you refer, would you please let me know where
 should be the log file?

 Thanks much,

 Jessica



 On Wednesday, April 24, 2013 3:13:54 PM UTC-5, slide wrote:

 Do you have any errors in jenkins logs?


 On Wed, Apr 24, 2013 at 12:43 PM, windycity jji...@gmail.com wrote:

 I am looking at this file, actually, I figure

 ${JELLY_SCRIPT,template=quot;htmlquot;}

 is the problem, if I get rid of this, everything seems working,
 though I do not understand why. Somebody else put this in global
 configuration, maybe this format is wrong, maybe it should be
 ${JELLY_SCRIPT, html}?


  Following is the content of ExtendedEmailPublisher xml file from
 the root of JENKINS_HOME

 Thanks much!

 Jessica

 ?xml version='1.0' encoding='UTF-8'?
 hudson.plugins.emailext.**Exten**dedEmailPublisherDescript**or
 plugin=email-ext@2.28
   
 hudsonUrlhttp://openjdk2a:**80**81/jenkins/http://openjdk2a:8081/jenkins/
 /hudsonUrl
   adminAddressaddress not configured yet
 lt;nobodygt;/adminAddress
   useSslfalse/useSsl
   defaultContentTypetext/html/defaultContentType
   defaultSubject${MAVEN_**PREBUI**LD_VERSION} $PROJECT_NAME -
 Build # $BUILD_NUMBER - $BUILD_STATUS!/**defaultSubject**
   defaultBody$PROJECT_NAME ${MAVEN_PREBUILD_VERSION}  - Build #
 $BUILD_NUMBER - $BUILD_STATUS:#xd;
 #xd;
 Check console output at $BUILD_URL to view the results.#xd;
 #xd;
 ${JELLY_SCRIPT,template=quot;htmlquot;}/defaultBody
   maxAttachmentSize-1/**maxAtta**chmentSize
   recipientListj...@cboe.com/recipientList

   defaultReplyTo/**defaultReply**To
   overrideGlobalSettingsfalse/overrideGlobalSettings
   precedenceBulkfalse/**precede**nceBulk
   debugModefalse/debugMode
   enableSecurityfalse/**enableS**ecurity
 /hudson.plugins.emailext.**Exte**ndedEmailPublisherDescript**or



 On Wednesday, April 24, 2013 2:33:08 PM UTC-5, slide wrote:

 My apologies, I need the ExtendedEmailPublisher xml file from the
 root of JENKINS_HOME.


 On Wed, Apr 24, 2013 at 10:03 AM, windycity jji...@gmail.comwrote:


 Here attached are the global and project config files, please let
 me know what is wrong.

 Thanks much for all your help!

 Jessica


 On Wednesday, April 24, 2013 8:59:51 AM UTC-5, slide wrote:

 pre-build/post build added token
 MIME-Version: 1.0
 Content-Type: multipart/alternative;
 boundary==_Part_**8**9_9798859.1366811681215

 --=_Part_89_9798859.**136681**1681215
 Content-Type: text/plain; charset=utf-8
 Content-Transfer-Encoding: 7bit

 They are expanded the same way, so I need more information (like
 your
 global and project config XML) to try and determine the issue.

 Sent from my Windows Phone
 From: windycity
 Sent: 4/24/2013 6:54
 To: jenkins...@googlegroups.**com
 Subject: jenkins e-mail ext DEFAULT_CONTENT does not expand
 pre-build/post build added token
 I use jenkin's configuration pre-build and post build Execute
 Groovy
 System Script- command to get a token $MAVE_PREBUIL_VERSION and
 $MAVEN_POSTBUILD_MAVEN

Re: [1.509.1 LTS] Massive performance issues

2013-05-26 Thread Vladimir Zak
Hi,

I think it is because of the dashboard plugin.
Is this problem already reported?

Vladimir


2013/5/21 Steffen Breitbach steffen.breitb...@1und1.de

 Hi Arnaud!


 On 19.05.2013 11:48, Arnaud Héritier wrote:

 I have such issue and downgraded back to 1.480.3 LTS.


 I'm also looking into this as a possible fix for our current situation.

 Did you face any issues after downgrading to 1.480.3 LTS ?


 Regards
   Steffen

 --
 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+unsubscribe@**googlegroups.comjenkinsci-users%2bunsubscr...@googlegroups.com
 .
 For more options, visit 
 https://groups.google.com/**groups/opt_outhttps://groups.google.com/groups/opt_out
 .




-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: jenkins e-mail ext DEFAULT_CONTENT does not expand

2013-05-26 Thread Vladimir Zak
I had there this
${BUILD_LOG,maxlines=500} which did not work now but before the update it
works more than a year.

No I have there
${BUILD_LOG,maxLines=500} and it works correctly.

zakyn


2013/5/26 Slide slide.o@gmail.com

 You need a space before format, also why are you setting the format to
 empty string.
  On May 26, 2013 4:07 AM, Vladimir Zak zakvladi...@gmail.com wrote:

 Hi,
 I have the same problem. The strings are not replaced by URl for example
 - $BUILD_URL is not replaced.

 In subjects it is replaced but NOT replaced in the other places.

 zakyn

 $PROJECT_NAME - Build # $BUILD_NUMBER - $BUILD_STATUS!$PROJECT_URL
 $BUILD_URL http://$BUILD_URL/artifact/Installation/InstallationKit
 Tests

 $FAILED_TESTS

 Changes  [%a] %m %p${CHANGES,format= }





 2013/4/24 windycity jji...@gmail.com


 Attach log.


 Jessica

 On Wednesday, April 24, 2013 4:04:04 PM UTC-5, windycity wrote:

 We are using tomcat, I have logs at 
 tomcat/apache-tomcat-6.0.35/**logs/catalina.out,
 is that the right one? But this one does not have any Jenkins error. Build
 #23 is the trouble one.

 Jessica

 On Wednesday, April 24, 2013 3:36:18 PM UTC-5, slide wrote:

 No, I mean the actual stderr type logs for the Jenkins app itself, it
 would be in different places depending on how you are running Jenkins.
 Could be in the tomcat logs, etc.


 On Wed, Apr 24, 2013 at 1:33 PM, windycity jji...@gmail.com wrote:

 By jenkins log, do you mean $JENKINS_HOME/jobs/project/**builds/#/log
 file?  If this is the file you refer, it does have build errors, but
 sending mail seems fine.

 Sending e-mails to: j...@cboe.com
 channel stopped
 Sending e-mails to: j...@cboe.com
 Email was triggered for: Failure
 Sending email for trigger: Failure
 Sending email to: j...@cboe.com
 Finished: FAILURE

 If this is not the log you refer, would you please let me know where
 should be the log file?

 Thanks much,

 Jessica



 On Wednesday, April 24, 2013 3:13:54 PM UTC-5, slide wrote:

 Do you have any errors in jenkins logs?


 On Wed, Apr 24, 2013 at 12:43 PM, windycity jji...@gmail.comwrote:

 I am looking at this file, actually, I figure

 ${JELLY_SCRIPT,template=quot;htmlquot;}

 is the problem, if I get rid of this, everything seems working,
 though I do not understand why. Somebody else put this in global
 configuration, maybe this format is wrong, maybe it should be
 ${JELLY_SCRIPT, html}?


  Following is the content of ExtendedEmailPublisher xml file from
 the root of JENKINS_HOME

 Thanks much!

 Jessica

 ?xml version='1.0' encoding='UTF-8'?
 hudson.plugins.emailext.**Exten**dedEmailPublisherDescript**or
 plugin=email-ext@2.28
   
 hudsonUrlhttp://openjdk2a:**80**81/jenkins/http://openjdk2a:8081/jenkins/
 /hudsonUrl
   adminAddressaddress not configured yet
 lt;nobodygt;/adminAddress
   useSslfalse/useSsl
   defaultContentTypetext/html/defaultContentType
   defaultSubject${MAVEN_**PREBUI**LD_VERSION} $PROJECT_NAME -
 Build # $BUILD_NUMBER - $BUILD_STATUS!/**defaultSubject**
   defaultBody$PROJECT_NAME ${MAVEN_PREBUILD_VERSION}  - Build #
 $BUILD_NUMBER - $BUILD_STATUS:#xd;
 #xd;
 Check console output at $BUILD_URL to view the results.#xd;
 #xd;
 ${JELLY_SCRIPT,template=quot;htmlquot;}/defaultBody
   maxAttachmentSize-1/**maxAtta**chmentSize
   recipientListj...@cboe.com/recipientList

   defaultReplyTo/**defaultReply**To
   overrideGlobalSettingsfalse/overrideGlobalSettings
   precedenceBulkfalse/**precede**nceBulk
   debugModefalse/debugMode
   enableSecurityfalse/**enableS**ecurity
 /hudson.plugins.emailext.**Exte**ndedEmailPublisherDescript**or



 On Wednesday, April 24, 2013 2:33:08 PM UTC-5, slide wrote:

 My apologies, I need the ExtendedEmailPublisher xml file from the
 root of JENKINS_HOME.


 On Wed, Apr 24, 2013 at 10:03 AM, windycity jji...@gmail.comwrote:


 Here attached are the global and project config files, please let
 me know what is wrong.

 Thanks much for all your help!

 Jessica


 On Wednesday, April 24, 2013 8:59:51 AM UTC-5, slide wrote:

 pre-build/post build added token
 MIME-Version: 1.0
 Content-Type: multipart/alternative;
 boundary==_Part_**8**9_9798859.1366811681215

 --=_Part_89_9798859.**136681**1681215
 Content-Type: text/plain; charset=utf-8
 Content-Transfer-Encoding: 7bit

 They are expanded the same way, so I need more information (like
 your
 global and project config XML) to try and determine the issue.

 Sent from my Windows Phone
 From: windycity
 Sent: 4/24/2013 6:54
 To: jenkins...@googlegroups.**com
 Subject: jenkins e-mail ext DEFAULT_CONTENT does not expand
 pre-build/post build added token
 I use jenkin's configuration pre-build and post build Execute
 Groovy
 System Script- command to get a token $MAVE_PREBUIL_VERSION
 and
 $MAVEN_POSTBUILD_MAVEN, and put this at e-mail ext plugin
 configuration. In
 both global and project session, DEFAULT_SUBJECT can extent
 these Tokens,
 but DEFAULT_CONTENT can not, is this a known issue or I am

Re: Problem with sending email

2013-04-17 Thread Vladimir Zak
No, nothing

I found the problem. Symantec Endpoint killed the sending with his
heuristic :(

zakyn


2013/4/16 Slide slide.o@gmail.com

 Hmmm, that's all you get? No timeout at all or anything?


 On Tue, Apr 16, 2013 at 10:45 AM, Vladimir Zak zakvladi...@gmail.comwrote:

 Yes, and this is a report.



 Running from: C:\_jenkins\jenkins\jenkins.
 war
 webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
 Jenkins home directory: c:\_jenkins\jenkins found at:
 EnvVars.masterEnvVars.get(JENKINS_HOME)
 DEBUG: JavaMail version 1.4.4
 DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
 DEBUG: Tables of loaded providers
 DEBUG: Providers Listed By Class Name:
 {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
 Microsystems, Inc],
 com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc],
 com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
 Microsystems, Inc],
 com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
 Microsystems, Inc],
 com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
 Microsystems, Inc],
 com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
 Microsystems, Inc]}
 DEBUG: Providers Listed By Protocol:
 {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
 Microsystems, Inc],
 imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
 Microsystems, Inc],
 smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
 Microsystems, Inc],
 pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
 Microsystems, Inc],
 pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
 Microsystems, Inc],
 smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc]}
 DEBUG: successfully loaded resource:
 /META-INF/javamail.default.address.map
 DEBUG: getProvider() returning
 javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc]
 DEBUG SMTP: useEhlo true, useAuth false
 DEBUG SMTP: trying to connect to host 172.16.1.3, port 25, isSSL false



 2013/4/16 Alex Earl slide.o@gmail.com

 Did you try enabling the javamail debug like I suggested?

 Sent from my Windows Phone
 --
 From: Vladimir Zak
 Sent: 4/16/2013 10:00
 To: jenkinsci-users@googlegroups.com
 Subject: Re: Problem with sending email

  Hello,

 I tried to run new jenkins from the war and try to send email.
 The problem is still there - so it seems to me that the problem is not
 in Jenkins itself.

 Do you have any hint where the problem could be?

 I think
 * firewall for jenkins not for the port because telnet is available
 * permission problem
 * refused connection from the smtp server - is it possible to anyhow
 check it?

 Thank you

 zakyn



 2013/4/16 Vladimir Zak zakvladi...@gmail.com

 Hello,

 I have tried all things but still it is not working. You can see the
 log files.

 Do you have any other hint for me, please?

 Using telnet - so SMTP server is working
 220 mai ESMTP Service (Lotus Domino Release 8.5.3FP3) ready at Tue, 16
 Apr 2013 18:40:04 +0200

 Thank you

 zakyn

 -- after start of Jenkins there is this problem ---
 Apr 16, 2013 6:18:55 PM hudson.plugins.greenballs.PluginImpl start
 INFO: Green Balls!
 log4j:WARN No appenders could be found for logger (net.bull.javamelody).
 log4j:WARN Please initialize the log4j system properly.
 Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onTaskFailed
 SEVERE: Failed Loading plugin nodeofflinenotification
 hudson.util.IOException2: Failed to initialize
 at hudson.ClassicPluginStrategy.load(ClassicPluginStrategy.java:349)
 at hudson.PluginManager$2$1$1.run(PluginManager.java:317)
 at
 org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
 at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
 at jenkins.model.Jenkins$7.runTask(Jenkins.java:875)
 at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
 at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)

 at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown
 Source)
 at java.lang.Thread.run(Unknown Source)
 Caused by: org.jruby.exceptions.RaiseException: (LoadError) library
 `fiber' could not be loaded: java.lang.ClassNotFoundException:
 org.jruby.ext.fiber.ThreadFiberLibrary

 Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onAttained
 INFO: Prepared all plugins

  log when I send the testing email
 ---
 Running from: C:\_jenkins\jenkins\jenkins.war
 webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
 Jenkins home

Re: Problem with sending email

2013-04-16 Thread Vladimir Zak
Hello,

I have tried all things but still it is not working. You can see the log
files.

Do you have any other hint for me, please?

Using telnet - so SMTP server is working
220 mai ESMTP Service (Lotus Domino Release 8.5.3FP3) ready at Tue, 16 Apr
2013 18:40:04 +0200

Thank you

zakyn

-- after start of Jenkins there is this problem ---
Apr 16, 2013 6:18:55 PM hudson.plugins.greenballs.PluginImpl start
INFO: Green Balls!
log4j:WARN No appenders could be found for logger (net.bull.javamelody).
log4j:WARN Please initialize the log4j system properly.
Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onTaskFailed
SEVERE: Failed Loading plugin nodeofflinenotification
hudson.util.IOException2: Failed to initialize
at hudson.ClassicPluginStrategy.load(ClassicPluginStrategy.java:349)
at hudson.PluginManager$2$1$1.run(PluginManager.java:317)
at
org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
at jenkins.model.Jenkins$7.runTask(Jenkins.java:875)
at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: org.jruby.exceptions.RaiseException: (LoadError) library `fiber'
could not be loaded: java.lang.ClassNotFoundException:
org.jruby.ext.fiber.ThreadFiberLibrary

Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onAttained
INFO: Prepared all plugins

 log when I send the testing email
---
Running from: C:\_jenkins\jenkins\jenkins.war
webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
Jenkins home directory: c:\_jenkins\jenkins found at:
EnvVars.masterEnvVars.get(JENKINS_HOME)
DEBUG: JavaMail version 1.4.4
DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
DEBUG: Tables of loaded providers
DEBUG: Providers Listed By Class Name:
{com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
Microsystems, Inc],
com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc],
com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
Microsystems, Inc],
com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
Microsystems, Inc],
com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
Microsystems, Inc],
com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
Microsystems, Inc]}
DEBUG: Providers Listed By Protocol:
{imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
Microsystems, Inc],
imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
Microsystems, Inc],
smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
Microsystems, Inc],
pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
Microsystems, Inc],
pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
Microsystems, Inc],
smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc]}
DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
DEBUG: getProvider() returning
javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc]
DEBUG SMTP: useEhlo true, useAuth false
DEBUG SMTP: trying to connect to host 172.16.1.3, port 25, isSSL false
---Apr
16, 2013 6:20:43 PM hudson.TcpSlaveAgentListener$ConnectionHandler run
INFO: Accepted connection #1 from /192.168.42.21:54362
Apr 16, 2013 6:36:04 PM hudson.triggers.SCMTrigger$Runner run
INFO: SCM changes detected in TMSAppOffboard. Triggering  #406
Apr 16, 2013 6:36:13 PM hudson.plugins.emailext.ExtendedEmailPublisher
sendMail
WARNING: Could not send email.
javax.mail.MessagingException: Could not connect to SMTP host: 172.16.1.3,
port: 25;
  nested exception is:
java.net.SocketException: Network is unreachable: connect
at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1934)
at
com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:638)
at javax.mail.Service.connect(Service.java:295)
at javax.mail.Service.connect(Service.java:176)
at javax.mail.Service.connect(Service.java:125)
at javax.mail.Transport.send0(Transport.java:194)
at javax.mail.Transport.send(Transport.java:124)
at
hudson.plugins.emailext.ExtendedEmailPublisher.sendMail(ExtendedEmailPublisher.java:308)
at
hudson.plugins.emailext.ExtendedEmailPublisher._perform(ExtendedEmailPublisher.java:289)
at

Re: Problem with sending email

2013-04-16 Thread Vladimir Zak
Hello,

I tried to run new jenkins from the war and try to send email.
The problem is still there - so it seems to me that the problem is not in
Jenkins itself.

Do you have any hint where the problem could be?

I think
* firewall for jenkins not for the port because telnet is available
* permission problem
* refused connection from the smtp server - is it possible to anyhow check
it?

Thank you

zakyn



2013/4/16 Vladimir Zak zakvladi...@gmail.com

 Hello,

 I have tried all things but still it is not working. You can see the log
 files.

 Do you have any other hint for me, please?

 Using telnet - so SMTP server is working
 220 mai ESMTP Service (Lotus Domino Release 8.5.3FP3) ready at Tue, 16 Apr
 2013 18:40:04 +0200

 Thank you

 zakyn

 -- after start of Jenkins there is this problem ---
 Apr 16, 2013 6:18:55 PM hudson.plugins.greenballs.PluginImpl start
 INFO: Green Balls!
 log4j:WARN No appenders could be found for logger (net.bull.javamelody).
 log4j:WARN Please initialize the log4j system properly.
 Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onTaskFailed
 SEVERE: Failed Loading plugin nodeofflinenotification
 hudson.util.IOException2: Failed to initialize
 at hudson.ClassicPluginStrategy.load(ClassicPluginStrategy.java:349)
 at hudson.PluginManager$2$1$1.run(PluginManager.java:317)
 at
 org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
 at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
 at jenkins.model.Jenkins$7.runTask(Jenkins.java:875)
 at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
 at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)

 at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
 at java.lang.Thread.run(Unknown Source)
 Caused by: org.jruby.exceptions.RaiseException: (LoadError) library
 `fiber' could not be loaded: java.lang.ClassNotFoundException:
 org.jruby.ext.fiber.ThreadFiberLibrary

 Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onAttained
 INFO: Prepared all plugins

  log when I send the testing email
 ---
 Running from: C:\_jenkins\jenkins\jenkins.war
 webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
 Jenkins home directory: c:\_jenkins\jenkins found at:
 EnvVars.masterEnvVars.get(JENKINS_HOME)
 DEBUG: JavaMail version 1.4.4
 DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
 DEBUG: Tables of loaded providers
 DEBUG: Providers Listed By Class Name:
 {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
 Microsystems, Inc],
 com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc],
 com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
 Microsystems, Inc],
 com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
 Microsystems, Inc],
 com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
 Microsystems, Inc],
 com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
 Microsystems, Inc]}
 DEBUG: Providers Listed By Protocol:
 {imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
 Microsystems, Inc],
 imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
 Microsystems, Inc],
 smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
 Microsystems, Inc],
 pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
 Microsystems, Inc],
 pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
 Microsystems, Inc],
 smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc]}
 DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
 DEBUG: getProvider() returning
 javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
 Microsystems, Inc]
 DEBUG SMTP: useEhlo true, useAuth false
 DEBUG SMTP: trying to connect to host 172.16.1.3, port 25, isSSL false
 ---Apr
 16, 2013 6:20:43 PM hudson.TcpSlaveAgentListener$ConnectionHandler run
 INFO: Accepted connection #1 from /192.168.42.21:54362
 Apr 16, 2013 6:36:04 PM hudson.triggers.SCMTrigger$Runner run
 INFO: SCM changes detected in TMSAppOffboard. Triggering  #406
 Apr 16, 2013 6:36:13 PM hudson.plugins.emailext.ExtendedEmailPublisher
 sendMail
 WARNING: Could not send email.

 javax.mail.MessagingException: Could not connect to SMTP host: 172.16.1.3,
 port: 25;
   nested exception is:
 java.net.SocketException: Network is unreachable: connect
 at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1934

Re: Problem with sending email

2013-04-16 Thread Vladimir Zak
Yes, and this is a report.


Running from: C:\_jenkins\jenkins\jenkins.
war
webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
Jenkins home directory: c:\_jenkins\jenkins found at:
EnvVars.masterEnvVars.get(JENKINS_HOME)
DEBUG: JavaMail version 1.4.4
DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
DEBUG: Tables of loaded providers
DEBUG: Providers Listed By Class Name:
{com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
Microsystems, Inc],
com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc],
com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
Microsystems, Inc],
com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
Microsystems, Inc],
com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
Microsystems, Inc],
com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
Microsystems, Inc]}
DEBUG: Providers Listed By Protocol:
{imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Sun
Microsystems, Inc],
imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun
Microsystems, Inc],
smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Sun
Microsystems, Inc],
pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun
Microsystems, Inc],
pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Sun
Microsystems, Inc],
smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc]}
DEBUG: successfully loaded resource: /META-INF/javamail.default.address.map
DEBUG: getProvider() returning
javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc]
DEBUG SMTP: useEhlo true, useAuth false
DEBUG SMTP: trying to connect to host 172.16.1.3, port 25, isSSL false



2013/4/16 Alex Earl slide.o@gmail.com

 Did you try enabling the javamail debug like I suggested?

 Sent from my Windows Phone
 --
 From: Vladimir Zak
 Sent: 4/16/2013 10:00
 To: jenkinsci-users@googlegroups.com
 Subject: Re: Problem with sending email

  Hello,

 I tried to run new jenkins from the war and try to send email.
 The problem is still there - so it seems to me that the problem is not in
 Jenkins itself.

 Do you have any hint where the problem could be?

 I think
 * firewall for jenkins not for the port because telnet is available
 * permission problem
 * refused connection from the smtp server - is it possible to anyhow check
 it?

 Thank you

 zakyn



 2013/4/16 Vladimir Zak zakvladi...@gmail.com

 Hello,

 I have tried all things but still it is not working. You can see the log
 files.

 Do you have any other hint for me, please?

 Using telnet - so SMTP server is working
 220 mai ESMTP Service (Lotus Domino Release 8.5.3FP3) ready at Tue, 16
 Apr 2013 18:40:04 +0200

 Thank you

 zakyn

 -- after start of Jenkins there is this problem ---
 Apr 16, 2013 6:18:55 PM hudson.plugins.greenballs.PluginImpl start
 INFO: Green Balls!
 log4j:WARN No appenders could be found for logger (net.bull.javamelody).
 log4j:WARN Please initialize the log4j system properly.
 Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onTaskFailed
 SEVERE: Failed Loading plugin nodeofflinenotification
 hudson.util.IOException2: Failed to initialize
 at hudson.ClassicPluginStrategy.load(ClassicPluginStrategy.java:349)
 at hudson.PluginManager$2$1$1.run(PluginManager.java:317)
 at
 org.jvnet.hudson.reactor.TaskGraphBuilder$TaskImpl.run(TaskGraphBuilder.java:146)
 at org.jvnet.hudson.reactor.Reactor.runTask(Reactor.java:259)
 at jenkins.model.Jenkins$7.runTask(Jenkins.java:875)
 at org.jvnet.hudson.reactor.Reactor$2.run(Reactor.java:187)
 at org.jvnet.hudson.reactor.Reactor$Node.run(Reactor.java:94)

 at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
 at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
 at java.lang.Thread.run(Unknown Source)
 Caused by: org.jruby.exceptions.RaiseException: (LoadError) library
 `fiber' could not be loaded: java.lang.ClassNotFoundException:
 org.jruby.ext.fiber.ThreadFiberLibrary

 Apr 16, 2013 6:18:58 PM jenkins.InitReactorRunner$1 onAttained
 INFO: Prepared all plugins

  log when I send the testing email
 ---
 Running from: C:\_jenkins\jenkins\jenkins.war
 webroot: EnvVars.masterEnvVars.get(JENKINS_HOME)
 Jenkins home directory: c:\_jenkins\jenkins found at:
 EnvVars.masterEnvVars.get(JENKINS_HOME)
 DEBUG: JavaMail version 1.4.4
 DEBUG: successfully loaded resource: /META-INF/javamail.default.providers
 DEBUG: Tables of loaded providers
 DEBUG: Providers Listed By Class Name:
 {com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT

Re: How to add attachments to the build results?

2013-03-11 Thread Vladimir Zak
I will try it but I would like to find the plugin which allows me to
browse and add file to the chosen build.
Is it anything like that available?

Thanks.

zakyn


2013/3/11 Grégory Boissinot gregory.boissi...@gmail.com:
 Jenkins enables you to archive some build artifacts. All archived artifacts
 will be stored in JENKINS_HOME attached to the current build.
 There is also the ArtifactDeployer plugin for deploying some build outputs
 to remote locations and make a link to the couple build/deployed artifacts.

 Does it suit you?


 On Mon, Mar 11, 2013 at 1:21 PM, zakyn zakvladi...@gmail.com wrote:

 Hello,
 I am looking for a plugin for adding the attachments to the build.

 For example - after the manual test of the build I would like to attach
 the test result file to the build.

 Is is there any plugin or possibility to do this?
 Thank you.

 zakyn

 --
 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.
 For more options, visit https://groups.google.com/groups/opt_out.




 --
 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.
 For more options, visit https://groups.google.com/groups/opt_out.



-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: How to log the other running jobs?

2013-01-28 Thread Vladimir Zak
Yes of course.

But I have 15 jobs and some of them are running parallel. I need to
log other running jobs to the last started console log (or file) for
example.
Then I could judge where the problems could be...

I hope you understand my problem.

Thanks.

Vladimir




2013/1/28 Peter Miklosko peter.b...@gmail.com:
 Did you yet had a look on Console output?
 http://SERVER_NAME/job/PROJECT_NAME/BUILD_NUMBER/console
 There is plenty of stuff, you can monitor your build progress and you can
 always return to these data anytime after build

 Peter


 On 28 January 2013 07:48, zakyn zakvladi...@gmail.com wrote:

 Hello,

 I have a situation that sometimes our builds crashed. I think it could be
 because of other jobs running and the very old unittests could cause these
 problems
 because of their dependency. Is it any way how to write information about
 running jobs to the each build log? I need to know what is running during
 the build.

 Thank you.

 zakyn

 --




 --



-- 




Re: Upgrade of Jenkins - is it necessary to upgrade slaves too?

2013-01-05 Thread Vladimir Zak
Hi,

I have already read it but for running slave via Java web start and
then windows service there is no information about that.

Thank you.

zakyn




2013/1/5 Mark Waite markwa...@yahoo.com:
 It depends how you launch the slave.  There is a good description on the
 wiki which can guide you.

 See
 https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds#Distributedbuilds-Differentwaysofstartingslaveagents

 Mark Waite

 
 From: zakyn zakvladi...@gmail.com
 To: jenkinsci-users@googlegroups.com
 Sent: Saturday, January 5, 2013 7:14 AM
 Subject: Upgrade of Jenkins - is it necessary to upgrade slaves too?

 Hello,

 I would like to upgrade my old Jenkins to the LTS Jenkins and I have a slave
 too. Should I anyhow upgrade the slave agent too or not?

 Thanks a lot.

 Zakyn




Re: How to publish artifacts which will be still available via links on Jenkins?

2012-12-13 Thread Vladimir Zak
Hi,

I have a look at it but it is not so clear to me why I should use that?

What are the advantages of the usage of it?

Thank you.

zakyn




2012/12/13 Clemens clemensgoer...@googlemail.com:
 Hi,

 have you just thought about using Artifactory ?


 Am Donnerstag, 13. Dezember 2012 07:39:52 UTC+1 schrieb zakyn:

 Hello,

 I have this situation. I have limited space on VM so I have to move the
 results(artifacts) to the another virtual HDD (for example
 \\file01\jenkins\results) but I need to have
 the links to these files still available from the Jenkins web pages.

 I went through the plugins but I did not find what I need.

 Could you please help me?

 Thank you.

 Zakyn


Re: How to start jenkins service with increased java heap memory

2012-03-25 Thread Vladimir Zak
Hi Richard,

I have tried that but after computer restart the parameters were not
there not at all :(

Vladimir





2012/3/25 Richard Lavoie lavoie.rich...@gmail.com:
 Can't you open the services panel (run - services.msc) and change the 
 service start command to add these 2 additionnal parameters ?

 Richard



 On 2012-03-25, at 08:17, zakyn zakvladi...@gmail.com wrote:

 Hello,

 I would like to ask you how to start jenkins service with increased
 java heap memory
 I would like to start jenkins with this java setting but my jenkins is
 running as a windows service.

 Is it possible to start jenkins service with these parameters -Xms512m
 -Xmx2048m ? Does it mean that java for jenkins will use this setting?

 Thank you for your help.

 Vladimir


Re: Jenkins - getting slower and slower

2012-03-19 Thread Vladimir Zak
Hi,

Thank you for answers.

Could I ask you about Discard builds functionality?

I have there more than a half year old builds. When I set 30 days then
I would like to ask you if the older builds are deleted when jenkins
is starting or when the same job is building?

Thanks

Vladimir





2012/3/19 Didier Durand durand.did...@gmail.com:
 Hi,

 To disable plugin via the HDD, you can have to delete them in
 $JENKINS_HOME/plugins (bot .hpi file and directory with same name

 regards

 didier

 Le dimanche 18 mars 2012 22:16:44 UTC+1, zakyn a écrit :

 Hello,

 I have problem that Jenkins is getting slower and slower and it is not
 possible to manage plugins. So I would lilke to ask you how I can
 disable plugin directly on HDD.

 Thank you.

 Best regards,

 Vladimir


Re: Jenkins - getting slower and slower

2012-03-19 Thread Vladimir Zak
@Hauser   -   no it is not virtual system. Why do you ask?

Vladimir





2012/3/19 Hauser, Wolfgang (external) wolfgang.hauser.exter...@cassidian.com:
 Do you run that Jenkins on a Virtual machine ?

 -Ursprüngliche Nachricht-
 Von: jenkinsci-users@googlegroups.com 
 [mailto:jenkinsci-users@googlegroups.com] Im Auftrag von Vojtech Juranek
 Gesendet: Montag, 19. März 2012 10:18
 An: jenkinsci-users@googlegroups.com
 Cc: Vladimir Zak
 Betreff: Re: Jenkins - getting slower and slower


 I have there more than a half year old builds. When I set 30 days then
 I would like to ask you if the older builds are deleted when jenkins
 is starting or when the same job is building?

 the builds are deleted after next build is run and finished. If you want to
 delete them without running new builds, go to script page
 ($JENKINS_URL/script) and run

 jenkins.model.Jenkins.instance.items.each { it.logRotate() }


Re: Run install exe file and install application from the batch from Jenkins

2012-02-27 Thread Vladimir Zak
@ Sami
it was on windows and I know it is possible to run it this way but I
need to start jenkins without log in so I need to use the service.

@ Slide
Is it possible to switch it on for log as a user too? I did not find
the checkbox there and the GUI is not available as I can see.

Thanks

Vladimir




2012/2/26 Slide slide.o@gmail.com:
 There is an option for services to allow interacting with the desktop, I
 recommend turning that on and retrying.

 On Feb 26, 2012 5:02 AM, Vladimir Zak zakvladi...@gmail.com wrote:

 Sami,

 It is running as a service with special login and my install kit
 support silent mode.

 I have tried to run it with gui but it did not work.

 Vladimir




 2012/2/26 Sami Tikka sjti...@gmail.com:
  Are you running Jenkins as a service? By default, services are not
  allowed to access the GUI session. Try to check the box allow service to
  interact with the desktop in the Jenkins service settings.
 
  -- Sami
 
  zakyn zakvladi...@gmail.com kirjoitti 25.2.2012 kello 22.04:
 
  Hello,
 
  I would like to run installation kit exe file from the batch command
  directly defined in Jenkins job.
 
  Something like
  .\AmbergTSPProfessional.exe /SILENT
 
  It seems to be started but nothing is done and the job is just only
  running without the installation.
 
  The command from cmd is working. Jenkins service and cmd both are run
  with the same credential.
 
  Do you have any hint for me please?
 
  Thank you.
 
  Vladimir