Re: Help with Windows slave configuration

2013-08-13 Thread Daniel Beck
Create a job. Enter the Windows node's name as 'Label expression' after you check 'Restrict where this project can be run'. For build steps, use something Visual Studio specific, or start with a 'Execute Windows batch command' builder. Now this job will run on your Windows node and execute you

Help with Windows slave configuration

2013-08-13 Thread keith.ouellettte
I am setting up Jenkins for the first time. It is installed on a Linux server (OpenSuSE 12.2) and we have a requirement to build an application using Visual Studio. We configured a windows slave and have it configured as a node in Jenkins. It is configured to use JNLP and we see it connected in th

Re: jenkins very slowly at finish any jobs

2013-08-13 Thread Richard Bywater
Ahh ok I see now. I had tried doing that before but only by marking the node offline and not actually killing the underlying slave process. (So turns out *offline* is not really **offline** :) ) Thanks for pointing out my misunderstanding - always good to learn something new each week! Richard.

jobs dont not finish

2013-08-13 Thread Luis Lopez
Hi! I click the icon to cancel the running multi configuration job and the work does not end. -- 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+u

Help with timezone on Debian - all builds are shown in UTC

2013-08-13 Thread Pete Akey
I've been trying to change the timezone that Jenkins is using following these instructions (I'm on Debian): https://wiki.jenkins-ci.org/display/JENKINS/Change+time+zone I added the following to my /etc/default/jenkins file: JENKINS_ARGS="--webroot=/var/cache/jenkins/war --httpPort=$HTTP_PORT

Re: Build Flow Plugin: run build flow job on commit

2013-08-13 Thread nicolas de loof
no, you have to define a job to get triggered by SCM then this job will trigger the build flow 2013/8/12 Denis Belorunov > I want to start flow when there is commit into CVS repository. But I do > not really want to setup CVS as SCM for my flow job, as checkout takes > significant time and does

Re: jenkins very slowly at finish any jobs

2013-08-13 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
Try it with a slave that is offline and you'll understand how it works :-) - Original Message - From: jenkinsci-users@googlegroups.com To: jenkinsci-users@googlegroups.com At: Aug 12 2013 17:31:07 Oh - wonder how the Workspace option for a job works? On my system I can see all the conten

Re: Conditional buildstep plugin regex match not working as expected?

2013-08-13 Thread Daniel Beck
There are essentially two options, let's call them 'match' and 'search': - Match: Check for exact match (essentially `equals`), and require expression to be wrapped in "any sequence of characters" using `.*` if you want to search instead. - Search: Only check presence of the search expression an

dynamically running parallel identical jobs on multiple slaves, with label restriction?

2013-08-13 Thread Yaniv Kaul
I'd like to run an identical test, on multiple nodes, with label restriction. For example, run 'eye sight' test on 10 nodes, all with 'blue-eyes' label (not with 'green-eyes'), or run 'hearing test' on 5 nodes, all with 'big ears' label. The manual build should ask the user for the count and the

Re:Jenkins Matrix Project: Ignore non existing configurations

2013-08-13 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
There is no method to do that in the Multi-Configuration Project today, but it doesn't sound like it would be very difficult to add. I could make use of that myself, in fact :-) - Original Message - From: jenkinsci-users@googlegroups.com To: jenkinsci-users@googlegroups.com At: Aug 13 20

Jenkins Matrix Project: Ignore non existing configurations

2013-08-13 Thread Benjamin Kemper
We use 3-4 axis's in our matrix projects (OS, ISA, Compiler and more) and are really annoyed by the fact that we have to manually write very complex combination filters only because some configurations don't exist. Is there a way to tell Jenkins to simply ignore non existing configurations in

Re: Building on slaves either fails build or generates a warning

2013-08-13 Thread Stevo Slavić
After deleting Jenkins jar cache on slaves - problem disappeared. Remoting needs a fix, to better handle corrupt files in cache. On Thu, Aug 8, 2013 at 3:02 PM, Stevo Slavić wrote: > Hello Jenkins community, > > Multiple different jobs when run on slaves either fail or generate a strange > wa

Re: jenkins very slowly at finish any jobs

2013-08-13 Thread Luis Lopez
Steffen! I have only one job that running maven. The others running script shell only but all jobs have the same behavior. might be happening? for this reason a lot of time consumption in the construction and integration process Help me!. 2013/8/13, Steffen Breitbach : > Hi Luis! > > On Mon, 2

Re: Why is my Jenkins logging in german?

2013-08-13 Thread Eduardo Dias
Daniel, we hada a similra problem with Portuguese, we are locate in Brazil, and som developers that are located in US was receiving email notification in Protuguese. After we had changed the Jenkins setup we solved the problem. Eduardo 2013/8/13 Daniel Beck > Are you sure? The UI usually is w

Re: SSH slave connection issues after Jenkins update

2013-08-13 Thread Pasi
I finally got this fixed by removing ruby-runtime plugin. I think that got installed during the update and was left in the system even after the downgrade. I found out the issue by copying all the configs and plugins to a test Jenkins instance, and one by one disabling plugins until the SSH con

Re: Conditional buildstep plugin regex match not working as expected?

2013-08-13 Thread LarsR
Thanks to both of you, ".*B.*" is the magical expression! :D What puzzles me though, is that the documentation I found on the web as well as the online expression testers all pointed in the direction that "B" should be enough to do the test?! Anyway, problem solved! / Lars > > -- You rec

RE: Conditional buildstep plugin regex match not working as expected?

2013-08-13 Thread Matthew.Webber
If you want to match for the character “B” anywhere in the string, the regular expression you need is “.*B.*” (without the quotes). If you want a case-insensitive match, use “.*[bB].*”. Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of LarsR S

Re: Conditional buildstep plugin regex match not working as expected?

2013-08-13 Thread Richard Bywater
.*B.* ? Richard. On Tue, Aug 13, 2013 at 10:13 PM, LarsR wrote: > Thanks Richard, > I have tested B.* and it works but it seems to do so because B is the > first character in "BCSMLX". If I try something like C.* it fails. I > realize might have been unclear in my first message but I want to

Re: Conditional buildstep plugin regex match not working as expected?

2013-08-13 Thread LarsR
Thanks Richard, I have tested B.* and it works but it seems to do so because B is the first character in "BCSMLX". If I try something like C.* it fails. I realize might have been unclear in my first message but I want to check if a specific character is present *anywhere* in the test string. (Th

Re: enhancement: allow setting of common/global parameters via API

2013-08-13 Thread J Arrizza
sorry for the delay, I've been traveling. It isn't just the initial installation or recovery from backups, it's also the ongoing maintenance. Moving all the configs into an SCM would work; rsyncing works too. But these techniques don't get you a "higher level" view of the jobs. For example I have

Re: View All Builds (Build History) Page : Missing Data

2013-08-13 Thread shanky
Knock Knock... On Monday, 12 August 2013 18:31:01 UTC+5:30, shanky wrote: > > Hey Guys, > > I have tried to search on it, look through the forums / groups, read the > documentation etc.. so finally posting! > > When I go to the Build History Tab from the jenkins home page > (/view/All/builds), I

Re: Why is my Jenkins logging in german?

2013-08-13 Thread Daniel Beck
Are you sure? The UI usually is whatever the browser requests. Big parts of Jenkins (plugins!) are mostly unlocalized (or localized only to English + developer's native language). What do build logs look like? If you use Copy Artifact plugin check those jobs; I remember its build log messages ar

Re: jenkins very slowly at finish any jobs

2013-08-13 Thread Steffen Breitbach
Hi Luis! On Mon, 2013-08-12 at 16:55 -0400, Luis Lopez wrote: > i have jenkins 1.526. When a job ends takes forever to cominece another job. > Can anyone help me? This might be related to fingerprinting. Are you running maven jobs? You might try to put the fingerprints in a ramdisk just for tes

Re: Why is my Jenkins logging in german?

2013-08-13 Thread Steffen Breitbach
Hi Daniel! On Mon, 2013-08-12 at 19:55 +0200, Daniel Beck wrote: > Is there anything language-related in /systemInfo or > /computer/slavename/systemInfo, e.g. in environment variables? Apparently in a startup configuration there was "-Duser.language=de". I've set it to "-Duser.language=en" whic