Update to strange Jenkins version number?

2013-06-18 Thread Matthew.Webber
My Jenkins release, currently 1.518, is telling me: --> New version of Jenkins (1.518.JENKINS-14362-jzlib) is available for download Does anyone know what this is about? http://jenkins-ci.org/changelog tells me that that is the latest release number, but I could find no other reference to it any

RE: Upgrade to Latest Jenkins - WSOD after running job

2013-06-19 Thread Matthew.Webber
I see the same thing, after upgrading Jenkins from 1.518 to 1.519. It seems to occur only when I build a job with parameters – I click “build”, the parameter page is presented, I click the “build” button, and I get presented with an empty page. The job is started correctly, however. I see this

RE: Upgrade to Latest Jenkins - WSOD after running job

2013-06-20 Thread Matthew.Webber
I have opened https://issues.jenkins-ci.org/browse/JENKINS-18425 for this problem. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Jared Griffith Sent: 19 June 2013 16:36 To: jenkinsci-users@googlegroups.com Subject: Re: Upgrade to Latest Jenkins - W

RE: Build with parameters redirects to blank screen

2013-06-27 Thread Matthew.Webber
There have been a number of messages about this in the group over the last few days – did you not see them? There is already a bug report open: https://issues.jenkins-ci.org/browse/JENKINS-18425 The problem will apparently be fixed in 1.521 when it is released. (see the changelog at http://jenk

RE: HELP! Jenkins no longer connects to Subversion (svn: REPORT of /svn/repo_name/!svn/vcc/default: 500 Internal Server Error)

2013-07-03 Thread Matthew.Webber
Are the clocks on the Jenkins machine and the subversion server in sync (e.g. via ntp)? They need to be. Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Masariello Sent: 02 July 2013 21:39 To: jenkinsci-users@googlegroups.com Subject: HELP! J

RE: Wiki plugin list down

2013-07-05 Thread Matthew.Webber
I see the same problem (Windows/Firefox, Windows/Chrome, Linux/Firefox). > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Johannes > Wienke > Sent: 05 July 2013 13:04 > To: jenkinsci-users@googlegroups.com > Subject: W

RE: Disable fingerprinting? (1.509.1 LTS)

2013-07-08 Thread Matthew.Webber
We have no need of fingerprints, but the CopyArtifact plugin "helpful" creates them anyhow (this is by design) - spending CPU and disk for no reason. I opened https://issues.jenkins-ci.org/browse/JENKINS-18653 to request that the CopyArtifact plugin make this optional. Of course, global disablin

"Archiving artifacts" can hang when used with Naginator

2013-08-06 Thread Matthew.Webber
If you use the Naginator plugin, and also archive artifacts, you might want to look at a ticket I've just opened: https://issues.jenkins-ci.org/browse/JENKINS-19071 The ticket describes how the Naginator plugin can cause archiving to hang under certain circumstances. Since there seem to be a nu

RE: Jenkins wrong output and failures

2013-08-07 Thread Matthew.Webber
Remember that tests are not always run in the order in which they appear in the source. My guess is that your tests are not independent, and that if they run in a certain order, an earlier test leaves some state that causes a later test to fail. From: jenkinsci-users@googlegroups.com [mailto:j

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: 1.528 Upgrade Issues

2013-08-20 Thread Matthew.Webber
The problem doesn’t happen to me on 1.528. It looks like it’s related to the publish-over-ssh plugin. If anyone else has this problem and is not using publish-over-ssh, please update the ticket. Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf O

RE: Jira plugin disabled but still updated JIRA issues ?!

2013-08-20 Thread Matthew.Webber
Do you restart Jenkins, or just "reload configuration from disk"? I think you need to do a full restart. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Marek Marzec Sent: 20 August 2013 12:32 To: jenkinsci-users@googlegroups.com Subject: Re: Jira pl

RE: Right procedure to send for Security Advisories

2013-08-29 Thread Matthew.Webber
I opened a “Security Issues” ticket (SECURITY-53) back in Jan/2013, with no response. So I’m not sure what triggers someone to actually look at your report … From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of teilo Sent: 29 August 2013 11:48 To: jenkin

RE: Prevent incrementing build number on failures

2013-09-05 Thread Matthew.Webber
>> But if you really what to do this, i think it can be done by hacking the >> file placed >> $hudson/jobs//nextBuildNumber in the end of you build if you now >> it failed, Don’t do that. Jenkins code assumes that the number increases with each run (pass or fail). If you invalidate that assumpt

RE: Choosing the slave to run the project

2013-09-06 Thread Matthew.Webber
I don't think an environment variable can be used, but in the job configuration you can specify "Restrict where this project can be run". Do you want to change the slave from run to run? If you tell the group what you are trying to achieve, you are more likely to get a useful suggestion. >

RE: resctrict number of jobs at a time

2013-09-09 Thread Matthew.Webber
Use this plugin: https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Tânia Magalhães Sent: 09 September 2013 10:20 To: jenkinsci-users@googlegroups.com Subject: resctrict numbe

RE: multinode setup advice

2013-09-11 Thread Matthew.Webber
The artifacts are kept on the master, in ${JENKINS_HOME}/jobs//builds//archive/. We use the https://wiki.jenkins-ci.org/display/JENKINS/Copy+Artifact+Plugin for copying artifacts from other jobs. We mostly zip up our artifacts before saving; this seems to improve performance. Matthew > -O

RE: How to Skip Sonar and Unit tests

2013-09-23 Thread Matthew.Webber
https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin is useful for this. Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Jean Paul Manjarres Correal Sent: 20 September 2013 22:39 To: jenkinsci-users@googlegroups.com Subje

RE: Setting Keep Forever

2013-09-25 Thread Matthew.Webber
Use https://wiki.jenkins-ci.org/display/JENKINS/Conditional+BuildStep+Plugin to test the release parameter, conditionally run a shell script that does something like: java -jar /path/to/jenkins-cli.jar -s http://jenkins:8080/ keep-build You need to sort out authentication for the jenkins-c

/lastBuild in URL no longer working

2013-10-08 Thread Matthew.Webber
Until fairly recently, we were able to use a URL of the form: jenkins:8080/job//lastBuild/console Note the use of lastBuild to refer to the most recent build. This stopped working recently for some jobs (you get a 404 if you go to the page) - but only for some; others jobs still work. I only

RE: Jenkins Automatically Deleting Build Logs

2013-10-08 Thread Matthew.Webber
“Reload Configuration from Disk” can be done from the web interface, under “Manage Jenkins”. You need admin rights, and I think this kills any jobs that are running when it is done. Slaves should reconnect automatically after the restart. From: jenkinsci-users@googlegroups.com [mailto:jenkinsc

RE: request on Jenkins error for time stamp

2013-10-08 Thread Matthew.Webber
Maybe the jobs all ran 50 minutes ago? Are you saying that they didn’t? By the way, that’s a very old Jenkins release, older than the current long term support release, you might want to consider upgrading. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behal

RE: request on Jenkins error for time stamp

2013-10-09 Thread Matthew.Webber
The way you update jenkins depends on how it was installed originally, and how it runs. Was it installed using a package manager (e.g. apt-get?), or did you just download the .war file? Does it run within a container such as Tomcat? If you run Jenkins with java -jar jenkins.war, Jenkins will be

RE: Problems with external SMTP

2013-10-09 Thread Matthew.Webber
Have you configured Jenkins with the details of your SMTP server? From the web interface, see Manage Jenkins -> Configure System, down the bottom is a section “E-mail Notification” – make sure you click on “Advanced”, fill in the details. Also click on the help icon for the first field “SMTP se

RE: Problem with Throttle Concurrent Builds plugin

2013-10-10 Thread Matthew.Webber
That sounds exactly like what I do, and it works for me. I’m using Jenkins 1.534, and Throttle Concurrent Builds Plugin 1.8 (the latest for both). This has been working for some time. Our jobs are all standard free-style jobs. Sorry I can’t give any useful suggestions. Matthew From: jenkinsci-u

RE: What characters are illegal to include in job names?

2013-10-14 Thread Matthew.Webber
Since job names form part of Jenkins URLs, I think the main limitation is characters which would need escaping when forming a URL (e.g., slash) From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Scott Evans Sent: 14 October 2013 16:40 To: jenkinsci-user

RE: What characters are illegal to include in job names?

2013-10-14 Thread Matthew.Webber
Ok, so your question is not "What characters are illegal to include in job names" but rather "how does the Copy Artifact plugin derive an environment variable name from a jobname, in order to report the job number" I've had the same problem with $COPYARTIFACT_BUILD_NUMBER - it seems impossi

Issue with Paramaterized builds and 1.535

2013-10-16 Thread Matthew.Webber
If you use builds with parameters, please be aware there is a regression in 1.535 (not a show-stopper, but annoying). See: https://issues.jenkins-ci.org/browse/JENKINS-20080 and https://issues.jenkins-ci.org/browse/JENKINS-20074 Matthew -- This e-mail and any attachments may contain confidenti

RE: Cannot save changes to job configuration after upgrading to 1.536

2013-10-23 Thread Matthew.Webber
There seem to be a number of problems in this area with 1.536, I suggest you fall back to 1.535. >> I upgraded jenkins to 1.536 today. After the upgrade, I cannot save any job >> configuration changes. There is a exception thrown by github plugin. I >> uninstalled github,github-api plugin and t

RE: email-ext plugin error

2013-10-24 Thread Matthew.Webber
There have been a number of problems reported with 1.536, it seems to have broken several plugins. I suggest you consider rolling back to 1.535. I have seen the following tickets mention 1.536 (list may be incomplete or incorrect): https://issues.jenkins-ci.org/browse/JENKINS-18629 https://issue

RE: NullPointerException thrown when saving new free-style project - Jenkins 1.536

2013-10-28 Thread Matthew.Webber
As someone else said, this is a bug in 1.536. Quite a few things were broken in 1.536, you should probably roll back. Incidentally, Jenkins has a bug tracker (Jira) at https://issues.jenkins-ci.org/browse/JENKINS. It’s always worth looking to see if a problem has already been reported before as

RE: Backups

2013-10-30 Thread Matthew.Webber
I have a job that runs each night and does an rsync of $JENKINS_HOME, skipping the history. Specifically, I use this command: rsync --verbose --itemize-changes --archive --omit-dir-times --whole-file --stats --exclude-from=/path/to/jenkins_home/rsync_exclude_filters.txt --delete /path/to/jenkin

RE: Backups

2013-10-30 Thread Matthew.Webber
> > where the rsync_exclude_filters.txt file contains this: > > (snipped) > > I would exclude workspace (as in vast majority of caseses this is > dowanloaded or generated), but keep builds as there might be important > artifacts there (if they are not important you should not store them in > first

RE: Resource Counting/Management

2013-10-31 Thread Matthew.Webber
Also look at the https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Stephen Connolly Sent: 31 October 2013 15:43 To: jenkinsci-users@googlegroups.com Subject: Re: Resource Cou

RE: CLI

2013-11-04 Thread Matthew.Webber
>> looks like CLI is completely broken. >> I cannot auth via u/p and not even via ssh keys. What release are you using? Has this ever worked for you, or are you trying it for the first time? Post the exact command you are using, and the response. -- This e-mail and any attachments may contain

New version of Priority Sorter - upgrade woes

2013-12-03 Thread Matthew.Webber
I was previously running the Priority Sorter plugin (https://wiki.jenkins-ci.org/display/JENKINS/Priority+Sorter+Plugin) v1.3, and have now updated to v2.0 (I also updated Jenkins from 1.539 to 1.542.) The wiki page for v2.0 states "If you are already using the Priority Sorter and you're upgrad

RE: How can I set the build description from a parameter?

2013-12-04 Thread Matthew.Webber
Here is the Groovy script I use, which gets the description from the log. You can modify as required to use an environment variable (I think). Matthew Webber // This Groovy script must be run using a Jenkins "Execute system Groovy script" build step // A previous step must write a line in the lo

RE: Jenkins Database

2013-12-11 Thread Matthew.Webber
I don’t have an immediate use for it, but this sounds like an excellent piece of work that you should definitely share (and please link to it from somewhere suitable on the Jenkins wiki). Thanks Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf O

RE: How to use --sessionTimeout?

2014-01-16 Thread Matthew.Webber
Originally I started Jenkins like this (abbreviated), but the sessionTimeout was not effective: java -DsessionTimeout=480 -jar jenkins.war I found that changing to this form worked: java -jar jenkins.war --sessionTimeout=480 Obviously you’ll need to work out for yourself how you get your init sc

RE: jvm crash...a fatal error. had been detected. ..exception. access violation...server restart. and jenkins. server remains. offline. until manually restarted. through. launch web start

2014-01-17 Thread Matthew.Webber
Hi Abc, The format of your message makes it very difficult to read and understand, so it will likely be ignored (remember, we're volunteers on this list). If you want people to help, you need to describe your problem in a way that makes it easy for people to read and understand. The English gra

Deleting a job doesn't

2014-01-23 Thread Matthew.Webber
On Jenkins 1.548 I just deleted a number of jobs (using the web interface). However, when I look in $JENKINS_HOME/jobs, the parent directories for the jobs I just deleted are still there. Most of their content has been deleted, but what remains is the builds/ sub-directory, and inside it the sy

RE: blocked jobs

2014-01-23 Thread Matthew.Webber
Does having only one 1 executor on MachineA address your use case? > -Original Message- > From: silver [mailto:pja...@gmail.com] > Sent: 23 January 2014 15:05 > To: jenkinsci-users@googlegroups.com > Subject: Re: blocked jobs > > Does anyone have any ideas on this one? > > Thanks. > > O

FW: Deleting a job doesn't

2014-01-30 Thread Matthew.Webber
I opened https://issues.jenkins-ci.org/browse/JENKINS-21572 for this. -Original Message- From: matthew.web...@diamond.ac.uk [mailto:matthew.web...@diamond.ac.uk] Sent: 23 January 2014 14:30 To: jenkinsci-users@googlegroups.com Subject: Deleting a job doesn't On Jenkins 1.548 I just delet

RE: Plugin not available but it is installed (email-ext)

2014-02-11 Thread Matthew.Webber
It's name appears in the installed plugin list as "Jenkins Email Extension Plugin". Is that name there? > -Original Message- > From: Maureen Barger [mailto:mobar...@gmail.com] > Sent: 11 February 2014 09:25 > To: jenkinsci-users@googlegroups.com > Subject: Plugin not available but it is i

How do I keep a slave disconnected?

2014-02-25 Thread Matthew.Webber
Recently I switched to starting our slaves using the standard Jenkins "Launch slave agents on Unix machines via SSH" (previously we used a home-grown script). However, sometime I want to temporarily stop a particular slave running. I can "disconnect" the slave (this can be done via the web inter

Exclusion plugin alternatives

2012-10-17 Thread Matthew.Webber
I use the Exclusion Plugin (https://wiki.jenkins-ci.org/display/JENKINS/Exclusion-Plugin) to stop certain steps in my jobs running at the same time, but occasionally a job hangs because it thinks a resource is in use by another job. There is a ticket open for this problem (https://issues.jenkin

RE: environment variables for 'Execute shell' steps in Jenkins jobs

2012-10-23 Thread Matthew.Webber
Manage Jenkins --> Global properties --> Environment variables works for us. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of 3lp Sent: 23 October 2012 10:32 To: jenkinsci-users@googlegroups.com Subject: environment variables for 'Execute shell' steps

RE: dynamic popup memus

2012-11-09 Thread Matthew.Webber
Agreed. I find the inability to copy text from the web interface particularly frustrating. I don’t want to be too critical of the Jenkins developers – we all benefit from the work a lot of people put in to drive the product forward, but I think we have to accept that sometimes well-intentioned

RE: Null pointer exceptions after upgrade from 1.480.1 to 1.480.2

2013-01-09 Thread Matthew.Webber
I was in a slightly different situation (linux, slaves launched manually), but had the 403 as well. Fixed by going to Manage Jenkins --> Configure Global Security, and under Project-based Matrix Authorization Strategy I had to enable “connect” in the “slave” section, for user “Anonymous”. Matth

RE: misconfigured anonymous security

2013-01-10 Thread Matthew.Webber
See https://wiki.jenkins-ci.org/display/JENKINS/Disable+security Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of zw Sent: 10 January 2013 16:46 To: jenkinsci-users@googlegroups.com Subject: misconfigured anonymous security Hi We misconfigure

RE: JNLP slave no longer works

2013-01-11 Thread Matthew.Webber
From a message I sent to the list a few days ago, which worked for at least some people: >>> I was in a slightly different situation (linux, slaves launched manually), but had the 403 as well. Fixed by going to Manage Jenkins -> Configure Global Security, and under Project-based Matrix Author

RE: JNLP slave no longer works

2013-01-11 Thread Matthew.Webber
But what about when the slave is not installed as a service? I use headless jnlp (https://wiki.jenkins-ci.org/display/JENKINS/Distributed+builds#Distributedbuilds-Launchslaveagentheadlessly) in a script that makes sure slave.jar is up to date. It looks like should be able to authenticate with -

RE: Run Condition plugin is invisible

2013-01-31 Thread Matthew.Webber
I think you have misunderstood - The run condition plugin does not depend on anything. Instead, other things depend on it. For example, we have Conditional Buildstep plugin (which depends on; i.e. use, the Run Condition plugin). In our job configuration, we can “Add build step” of type “Condit

RE: Copy Existing Job throws stacktrace

2013-02-08 Thread Matthew.Webber
This is https://issues.jenkins-ci.org/browse/JENKINS-16499. Update the JobConfigHistory Plugin to at least 2.2 From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Hoffman Sent: 08 February 2013 14:18 To: jenkinsci-users@googlegroups.com Subject: Co

RE: Copy Existing Job throws stacktrace

2013-02-08 Thread Matthew.Webber
The plugin is not required (though highly recommended), so it you didn’t have it before, “upgrading” it would be unlikely to solve your problem. It looks like the fix is in the not-yet-release 1.501 see http://jenkins-ci.org/changelog The Jira ticket I originally pointed you to explains it all …

Jenkins 1.501 only partially released

2013-02-11 Thread Matthew.Webber
My Jenkins says that 1.501 is available, but when I go to "install automatically", is fails with java.io.FileNotFoundException: http://mirrors.jenkins-ci.org/war/1.501/jenkins.war and that's correct, the file is not there, at least on the mirror I get It's been that way for 4 hours or so - did s

RE: Periodic even build question

2013-02-14 Thread Matthew.Webber
In the Jenkins job configuration, under “build triggers” --> “build periodically”, click on the help question-mark on the right (of “schedule”). It’s all there, for me anyhow. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Merrow, Frank Sent: 14 Fe

Cleanup after build timeout?

2013-02-18 Thread Matthew.Webber
We use the Build Timeout plugin (https://wiki.jenkins-ci.org/display/JENKINS/Build-timeout+Plugin) to abort a job when a build step runs too long. Our problem is that we'd like to do some clean-up work after the build steps times out. However, the plugin seems to preclude this - all subsequen

RE: hudson.util.IOException2: remote file operation failed

2013-02-18 Thread Matthew.Webber
The latest Git plugin says: Version 1.1.28 (February 17, 2013) fix a regression that breaks jenkins remoting Matthew > -Original Message- > > Finally managed to get things working again, by downgrading the git > plugin. I'd updated to 1.1.27 and after downgrading back to 1.1.26 > thi

Git client plugin 1.0.2 broken

2013-02-20 Thread Matthew.Webber
Upgrading the Git client plugin from 1.0.1 to 1.0.2 results in an "ERROR" text with a stack trace on the config page of a job that uses Git (see below). Rolling back solves the problem. Matthew Status Code: 500 Exception: java.lang.IllegalAccessError: tried to access method org.jenkinsci.plugin

RE: Git client plugin 1.0.2 broken

2013-02-20 Thread Matthew.Webber
Thanks, upgrading both together seems to work ok. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of nicolas de loof Sent: 20 February 2013 11:49 To: jenkinsci-users@googlegroups.com Subject: Re: Git client plugin 1.0.2 broken git plugin 1.2.0 was relea

"Discard old builds" broken in Jenkins 1.503

2013-02-27 Thread Matthew.Webber
I just upgraded from Jenkins 1.502 to 1.503. "Discard old builds" has been broken. When I go to the "Manage Jenkins" page, I see "You have data stored in an older format and/or unreadable data.", and clicking on "Manage" shows "InstantiationError: jenkins.model.BuildDiscarder" for most of my jo

RE: Global lock for multi-configuration build?

2013-03-04 Thread Matthew.Webber
Are you aware of the exclusion and the throttle concurrent builds plugins? Also note that provisional plan

RE: Jenkins checkout of Subversion code --read only

2013-03-08 Thread Matthew.Webber
Subversion records the permissions settings of files, and when you check out, they are set. I presume that what you need to do is tell subversion that this file should be executable. Here’s my instructions for Eclipse, I’m sure you can look up the command line equivalent now that you know what

RE: Access and uthorization in Jenkins

2013-03-11 Thread Matthew.Webber
Try https://wiki.jenkins-ci.org/display/JENKINS/Role+Strategy+Plugin Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Syed Mahdi Sent: 11 March 2013 08:29 To: jenkinsci-users@googlegroups.com Subject: Access and uthorization in Jenkins hello A

RE: Slowness in Jenkins

2013-04-11 Thread Matthew.Webber
What versions of RedHat and Java? What version of SVN server, and what's it run on? We had some similar problems which were very release specific. > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of aswini.r > Sent: 11 Ap

RE: Mass Jenkins job updates

2013-05-21 Thread Matthew.Webber
I often find the low-tech approach works. For simple bulk changes I edit the config.xml files using the bash command line (this is Linux, obviously). Something like this: cd /path/to/Jenkins-home/jobs/ find -mindepth 1 -maxdepth 1 -type d -name "jobname.pattern.of.interest* " | sort | xargs -i

RE: Proxy port

2013-05-24 Thread Matthew.Webber
These settings come from your Buckminster install: /path/to/buckminster/configuration/.settings/org.eclipse.core.net.prefs > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of CLOSE > Dave > Sent: 24 May 2013 02:30 > To: je

RE: svn 1.7

2012-02-06 Thread Matthew.Webber
SVN 1.7 is a major change from 1.6. Subversion 1.7 clients use a new working copy format. Subversion 1.7 clients cannot use Subversion 1.6 (and earlier) working copies. Existing working copies created with Subversion 1.6 and earlier need to be upgraded before they can be used with a Subversion 1

RE: kill builds that take too long?

2012-02-15 Thread Matthew.Webber
You want https://wiki.jenkins-ci.org/display/JENKINS/Build-timeout+Plugin Matthew > -Original Message- > Is there a way I can get Jenkins to kill builds that take too long? > I have one job whose unit tests periodically hang, and sometimes it's a > day or two before I notice (no news is go

Bug in EnvInject Plugin 1.26

2012-02-21 Thread Matthew.Webber
If you use the EnvInject Plugin, note that 1.26 introduced a bug you might want to know about. See https://issues.jenkins-ci.org/browse/JENKINS-12841. We dropped back to 1.25 to get around this. Matthew -- This e-mail and any attachments may contain confidential, copyright and or privileged ma

RE: Environment variable referencing to remote fs root

2012-02-23 Thread Matthew.Webber
That won’t work if you use a custom workspace for a job. The same probably applies if, under the global configuration, you have (under "Advanced") changed "Workspace Root Directory". Matthew > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegr

How do I format the Parameterized Build options screen?

2012-02-27 Thread Matthew.Webber
We use Parameterized Builds from the Jenkins core, but the layout of the selection screen presented to the user when they click the "Build" button is not always what we want - for example, the description is always below the item it applies to. Is there any way of tweaking the layout? I've trie

Can I replace the "Exclusive Execution" plugin with the "Throttle Concurrent Builds" plugin?

2012-02-27 Thread Matthew.Webber
Can I replace the "Exclusive Execution" plugin with the "Throttle Concurrent Builds" plugin? The proposed plugin deprecation list (https://wiki.jenkins-ci.org/display/JENKINS/Proposed+Plugin+Deprecation) suggests that it is possible, but I can't work out how. Thanks -- This e-mail and any at

Throttle Concurrent Builds plugin vs. Exclusion-Plugin

2012-02-27 Thread Matthew.Webber
The "Throttle Concurrent Builds" plugin operates at the job level; the "Exclusion-Plugin" operates at the level of the individual step (or range of steps) within a job. The proposed plugin deprecation list (https://wiki.jenkins-ci.org/display/JENKINS/Proposed+Plugin+Deprecation) suggests that

RE: Git+Gitolite+Jenkins

2012-02-27 Thread Matthew.Webber
Some ideas: (1) Does Jenkin's public key have a passphrase? (2) Is the --progress option on the clone command come from you, or the Jenkins Git plugin? Will that work in a headless environment? (3) Is the spelling really "hub-applcation" rather than "hub-application"? Matthew > -Original Mess

RE: Git+Gitolite+Jenkins

2012-02-27 Thread Matthew.Webber
Try git clone ssh://git@myGitServer/repo.git (WITHOUT repositories/ in the URL). That's a gitolite thing. > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Charles > Sent: 27 February 2012 15:38 > To: Jenkins Users > Su

RE: Hiding the password field in Jenkins console log.

2012-02-28 Thread Matthew.Webber
The first hit (for me, anyhow) for http://www.google.co.uk/search?q=jenkins+password+suppress takes you to the Mask Passwords Plugin, which looks like it may address you problem. > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On

New bug in EnvInject plugin

2012-02-29 Thread Matthew.Webber
Users of the EnvInject plugin, please be aware of a bug in the latest (1.30) release: https://issues.jenkins-ci.org/browse/JENKINS-12936 -- This e-mail and any attachments may contain confidential, copyright and or privileged material, and are for the use of the intended addressee only. If you

RE: Having a given job running absolutely alone on my jenkins: how ?

2012-03-02 Thread Matthew.Webber
I've not used it, but https://wiki.jenkins-ci.org/display/JENKINS/Exclusive+Execution+Plugin matches your use case exactly. > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Didier > Durand > Sent: 02 March 2012 16:37

Specifying files in warnings plugin

2012-03-05 Thread Matthew.Webber
We've just started using the warnings plugin, scanning the console log for Buckminster compiler warnings. I want to only collect warnings for selected source files, so I clicked "Advanced" which offers options "Warnings to include" and "Warnings to ignore". I tried to specify a file path here (

RE: Specifying files in warnings plugin

2012-03-05 Thread Matthew.Webber
Hi Ulli, Thank you for your hint. “.*/materialize_workspace_git/scisoft/.*\.java” works for me. Originally, I was missing the “.*/” at the beginning of the regex. Matthew From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On

RE: Cannot build any jobs: "Pending - Waiting for next available executor"

2012-03-07 Thread Matthew.Webber
This is probably https://issues.jenkins-ci.org/browse/JENKINS-12994 - vote for that ticket if it is a problem for you (and/or add a note to the ticket indicating that you are also experiencing it) From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Nic

RE: Cannot build any jobs: "Pending - Waiting for next available executor"

2012-03-08 Thread Matthew.Webber
The problem is https://issues.jenkins-ci.org/browse/JENKINS-12994. Sami, can you add a comment to that ticket to say you also have the problem, and possibly vote for it? At the moment the ticket is unassigned, yet it’s blocking some people moving to the latest release which has a security fix.

RE: Restricted job keeps waiting even though the node becomes available

2012-03-20 Thread Matthew.Webber
The problem is https://issues.jenkins-ci.org/browse/JENKINS-12994. Can you add a comment to that ticket to say you also have the problem, and possibly vote for it? At the moment the ticket is unassigned, yet it’s blocking some people moving to the latest release which has a security fix. Matthew

RE: Removing Subversion credentials

2012-03-29 Thread Matthew.Webber
Try ~/.subversion/auth/svn.simple From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Teo Sent: 29 March 2012 12:53 To: jenkinsci-users@googlegroups.com Subject: Removing Subversion credentials Hi, I am trying to remove some Subversion credential since

RE: Can't get email-ext plugin to work

2012-04-04 Thread Matthew.Webber
If all you do in your job config is tick the "Editable email notification" option, then it only sends an email on failure (not unstable). Is that the email you are getting? If you look at the console log for any job, then right at the bottom, you can see what emails were sent. That might help.

Subversion plugin version

2012-05-09 Thread Matthew.Webber
The version of the Subversion plugin that comes bundled with Jenkins is 1.34. Version 1.39 has been out for ages, without problems (at least for us) - is it time to update the bundled version? I'm not sure who can actually do this. -- This e-mail and any attachments may contain confidential, cop

RE: hudson.scm.SubversionSCM.xml

2012-05-09 Thread Matthew.Webber
Are you on the latest version of the Subversion plugin (1.39)? The version bundled in the Jenkins .war file is 1.34 > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Chemmo > Sent: 09 May 2012 15:03 > To: Jenkins Users

RE: UI weird after update?

2012-05-10 Thread Matthew.Webber
I’m on 1.463 with Firefox 12.0, and the web pages, including CSS, look good to me. I also get the warnings that you get, but I guess these are benign. So, no ideas! From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Andrew Melo Sent: 10 May 2012 02:50 T

Exclusion plugin not releasing?

2012-05-21 Thread Matthew.Webber
We have used the Exclusion plugin (https://wiki.jenkins-ci.org/display/JENKINS/Exclusion-Plugin) without problems for some time. However, I've just noticed that some resources are listed (on the Exclusion control panel page) as being held, even though the jobs in question have finished. As a re

RE: SVN revision number inconsistency between build page and environment variable

2012-06-06 Thread Matthew.Webber
I think this is a consequence of the way subversion works. A subversion checkout of part of the repo (eg trunk/) has two revision numbers associated with it - the "current revision" number for the item (directory, file, whatever), and the "last changed" revision number. You can see these by usi

Bug in latest release of Build timeout plugin 1.9

2012-06-13 Thread Matthew.Webber
I haven't opened a ticket for this yet, but there is a significant bug in Build timeout plugin 1.9. I have job A, with a timeout of 3 minutes. A (using the parameterized plugin) does a "Trigger/call builds on other projects" to job B, which has a timeout of 60 minutes. A does _not_ have "Block

RE: Bug in latest release of Build timeout plugin 1.9

2012-06-14 Thread Matthew.Webber
I have opened https://issues.jenkins-ci.org/browse/JENKINS-14105 for this bug. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Jason Swager Sent: 14 June 2012 15:26 To: jenkinsci-users@googlegroups.com Subject: Re: Bug in latest release of Build timeo

EnvInject plugin doesn't set empty variable

2012-06-15 Thread Matthew.Webber
I am using the EnvInject plugin, and my job has "Inject environment variables to the build process" set. My "Properties Content" section looks like this: materialize_version=v1.0 keyring_location= workspace_build_type=clean I want the keyring_location variable set, but empty (null). In bash, the

RE: User Prompts

2012-06-15 Thread Matthew.Webber
Can you explain what you want to happen? If you are talking about a job that is triggered by a previous job, rather than by a user, who do you want to ask for input? There is no user to ask. I guess the question is, how are the consecutive jobs being run at the moment? From: jenkinsci-users@goo

RE: EnvInject plugin doesn't set empty variable

2012-06-19 Thread Matthew.Webber
It appears that on Windows (I tested on XP), setting an environment variable to an empty string is used to unset the variable; hence an empty string is not possible for an environment variable on Windows. This is different from bash, when “unset” and “empty string” are two different cases. So,

How to set build description if build times out?

2012-06-19 Thread Matthew.Webber
The build timeout plugin (https://wiki.jenkins-ci.org/display/JENKINS/Build-timeout+Plugin) has a job configuration checkbox "Writing the build description" (I think this was added in 1.9). However, there is nowhere to actually set the text of the build description in the event of a timeout. W

RE: How to set build description if build times out?

2012-06-19 Thread Matthew.Webber
I see, it uses a standard message text. That's good enough for me - the help text wasn't clear, that's all. > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Jesse > Farinacci > Sent: 19 June 2012 11:37 > To: jenkinsci

RE: "Changes will take effect when you restart Hudson" permanently

2012-06-19 Thread Matthew.Webber
What are you running, Hudson or Jenkins? > -Original Message- > From: jenkinsci-users@googlegroups.com > [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Andrey > Myatlyuk > Sent: 19 June 2012 16:02 > To: jenkinsci-users@googlegroups.com > Cc: jenkinsci-users@googlegroups.com > Sub

  1   2   3   >