job level permissions not taking precidence over global permissions

2013-08-29 Thread Maven User
Hi all - I want to allow all users at the global level to do a few things BUT for a particular job, I only want a few people to be able to run it. I seems like once at a global level, if authenticated users have been granted access to run a job then on a per job basis, I can't specify a

Re: job level permissions not taking precidence over global permissions

2013-08-29 Thread Maven User
with negative lookahead, thereby matching all projects except a few. Alternatively, commercial Jenkins Enterprise has Role-based Access Control, which allows you to filter (global) roles so they don't apply to a specific project. On 29.08.2013, at 22:01, Maven User maven@gmail.com javascript

Re: trigger a build ONLY when there has been a M2_RELEASEBUILD

2013-08-07 Thread Maven User
...@googlegroups.com javascript: [mailto: jenkins...@googlegroups.com javascript:] *On Behalf Of *Maven User *Sent:* 06 August 2013 22:26 *To:* jenkins...@googlegroups.com javascript: *Subject:* trigger a build ONLY when there has been a M2_RELEASEBUILD I think I may be over engineering this one

persisting changes made via the script console

2013-02-15 Thread Maven User
Hi all - I'm trying to set the slaveAgentPort (as it is known in the config.xml) via the script console and I'm struggling a bit. I'm trying this: myinstance = Hudson.instance println( myinstance.tcpSlaveAgentListener.configuredPort) if (myinstance.tcpSlaveAgentListener.configuredPort

Re: arcvhiving takes forever - just me?

2013-02-05 Thread Maven User
to me. Other than that google for bandwidth delay product and ssh plugin (check the last comment in https://issues.jenkins-ci.org/browse/JENKINS-3922) /James On Monday, 4 February 2013 21:17:26 UTC, Maven User wrote: Hi all - Super quick question - maybe this is a known issue

Re: arcvhiving takes forever - just me?

2013-02-05 Thread Maven User
Regardless of the setting NOTHING makes the archiving go faster :-/ -- 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.

arcvhiving takes forever - just me?

2013-02-04 Thread Maven User
Hi all - Super quick question - maybe this is a known issue When archiving a large artifact, jenkins seems to take forever (in some cases, taking a 1 min build up to 30 min). What's weird is when I ssh up to that same slave and scp over that same artifact to the same final location, it

Re: cron H syntax

2012-05-23 Thread Maven User
H is a drop in for any of the time slots and/or *, so it felt natural (for me) to try H/5. To explain that in a different way, I was attempting to say poll every 5 minutes if nothing is polling, wait for that to finish otherwise. With that out there, if I just leave everything */5 * * * *, and

Re: LDAP authentication fails

2012-05-02 Thread Maven User
What version of the AD plugin are you using? If you have 1.27 installed, try rolling back to 1.26 (which may be a manual thing at this point).

controlling upstream/downstream relationships

2012-05-02 Thread Maven User
Hi all - I could have sworn somewhere that a jenkins job stores what it thinks is an upstream or downstream job. I have two jobs that at one point, were misconfigured. Now one always triggers the other. Is there a way to clip this configuration? I could have sworn that in one of the files

Re: controlling upstream/downstream relationships

2012-05-02 Thread Maven User
Anyone else? There should be someway to reset this

Re: LDAP authentication fails

2012-05-01 Thread Maven User
I'm sorta wedged at this same place now. While I can log in, the manage' page (among others) is NOT being displayed because there is now an error about First name, Last name having an invalid character in there. How do I even upgrade if I can't reach the plugin pages?

Re: Approach towards Maven profiles and Jenkins

2012-04-26 Thread Maven User
There's a config-file-provider plugin that does what you're looking for: https://wiki.jenkins-ci.org/display/JENKINS/Config+File+Provider+Plugin Seems like a horrible idea to put a settings file in a source tree though There's really no way to use properties like env.computername or w/e

Re: feed or notification for Jenkins releases

2012-04-26 Thread Maven User
There's a twitter account :-/ On Thursday, April 26, 2012 2:33:41 PM UTC-4, Dan Stine wrote: I know about https://jenkins-ci.org/changelog. But I cannot locate a feed for this information, nor a low-traffic announce-style email list. Is there such a thing? Thanks, Dan

email ext mails - rooturl token wrong

2012-04-26 Thread Maven User
Hi all - This feels like a silly question but where is this setting configured? Here, we have several jenkins master servers - all named ci-group.function.net. When I get an email now, the images are dropped off because when I view source, I can see that the image location is

Re: email ext mails - rooturl token wrong

2012-04-26 Thread Maven User
:38:21 PM UTC-4, Maven User wrote: Seems like I may have hit: https://issues.jenkins-ci.org/browse/JENKINS-13242 Pulling 2.20 now... And nope, even with override disabled, still pulling bogus value On Thursday, April 26, 2012 4:25:58 PM UTC-4, Maven User wrote: Hi all - This feels

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2012-04-25 Thread Maven User
Have you tried global environment variables? Jenkins has so much intelligence built into polling, seems like a shame to ditch that for some quicky hand-rolled script :-/ On Tuesday, April 24, 2012 9:46:27 AM UTC-4, Linley wrote: Hi, We have a SVN structure that consists of a main parent

Re: Mercurial plugin NOT picking up merges back to the default branch

2012-04-25 Thread Maven User
. On Mon, Apr 23, 2012 at 4:02 AM, hezjing wrote: I'm waiting for the fix too ... our team didn't realized that we actually missed some builds because Jenkins ignored the merge changesets :-( On Tue, Feb 21, 2012 at 4:05 AM, Maven User wrote: Looking at this: https://issues.jenkins

Re: Maven 3 modules

2012-04-25 Thread Maven User
What's the full use case? Also - if you're doing that - why not break them into individual repositories or modules and just rely on dependencies? Jenkins also has an option to build just what's changed. Maybe that'd be a good compromise? On Monday, April 23, 2012 11:55:31 AM UTC-4,

Re: Jenkins master

2012-04-25 Thread Maven User
You may seem some fun tho as the logs for jobs are streamed back to the master (so disk io/memory may pick up). In another life, someone opted for some slow disk for the master. Quickly became a pain point. How many slaves can you have per master specs? No idea :-/ On Thursday, April 19,

Re: Maven does not fail builds whit test failures.

2012-04-25 Thread Maven User
This is actually pretty normal. Generally Hudson/Jenkins OOTB mark builds unstable if the tests fail. Try adding -Dmaven.test.failure.ignore=true to your maven command line - but be forewarned - there will likely be other parts of the job that won't run and I wonder how many artifacts will be

Re: Maven 3 modules

2012-04-25 Thread Maven User
which are not changed ? Will jenkins figure it self and bring those down too ? -Raj On Wed, Apr 25, 2012 at 7:19 AM, Maven User: What's the full use case? Also - if you're doing that - why not break them into individual repositories or modules and just rely on dependencies? Jenkins

Re: Is it possible to parameterize a Subversion Repository URL location in a Jenkins build job configuration?

2012-04-25 Thread Maven User
Problem becomes - what happens if there are 30 jobs that need that same property? Parameters are great if you want to click build, not so hot for polling based things (or use default value I guess).

Re: Jenkins Permission

2012-04-25 Thread Maven User
I'm sorta reading between the lines here - but first order of business might be to make sure the files you're planning on editing (programattically) exist in some resources location in your source tree then the build should process them into their final destination. If this is a non-standard

parameterized values passed to a groovy build step

2012-04-24 Thread Maven User
Hi all - I have a job that needs to execute a groovy pre- step that sets a global environment variable. Is there anyway to do this? I have tried the following: for (nodeproperty in hudson.model.Hudson.instance.globalNodeProperties) { println(nodeproperty.getEnvVars());

Re: parameterized values passed to a groovy build step

2012-04-24 Thread Maven User
(nodeproperty.getEnvVars()); if(nodeproperty.getEnvVars().get(FOO) != null) { nodeproperty.getEnvVars().put(FOO, hardcoded_param_value); hudson.model.Hudson.instance.save(); println(nodeproperty.getEnvVars()); } } On Tuesday, April 24, 2012 4:06:46 PM UTC-4, Maven User wrote

password masking plugin too aggressive

2012-03-27 Thread Maven User
Hi all - I'm using the password masking plugin but when I use the maven release plugin, I can see that it's masking out other parameters (that are NOT checked in the main jenkins config section). My builds end up failing because maven is trying to retrieve a GAV of something like

Re: password masking plugin too aggressive

2012-03-27 Thread Maven User
Yeah, it's actually not breaking the dl as expected but the fact that it's obfuscating something like foo-8.0-SNAPSHOT is nuts... On Tuesday, March 27, 2012 4:02:45 PM UTC-4, gboissinot wrote: Mask passwords plugin tries to mask passwords values line by line of the log file. If a line

Re: Mercurial plugin NOT picking up merges back to the default branch

2012-02-20 Thread Maven User
: On 17 February 2012 21:38, Maven User maven.2.u...@gmail.com wrote: Hi all - I think we're hitting this issue: https://issues.jenkins-ci.org/browse/JENKINS-12459 I'm not sure why one would ever want the --no-merges option. Shouldn't it be binary?  There are changes - build, there aren't