Failure to trigger freestyle job from declarative pipeline

2019-03-05 Thread David Aldrich
I have an unanswered Jenkins question on Stack Overflow. If anyone can help I would be grateful. https://stackoverflow.com/questions/54981206/failure-to-trigger-freestyle-job-from-declarative-pipeline If my question is too vague I would be grateful for suggestions of how to improve it. Best rega

Re: Workspace clean-up killed jobs

2019-05-02 Thread David Aldrich
t; Regards, > Sarfroz > > On Monday, November 27, 2017 at 2:16:04 PM UTC+5:30, David Aldrich wrote: > >> Hi >> >> >> >> Two of our declarative script jobs have failed for similar reasons. The >> jobs normally run with no problem. We are runnin

Confused by declarative pipeline trigger specifications

2019-09-25 Thread David Aldrich
Hi We use declarative pipelines extensively, triggered by SCM change. We use a cron spec to specify a SCM polling interval. It seems that the trigger specification can be set in two places: in the GUI configuration for the job and in the pipeline itself. Do I need to set both trigger specificat

Re: Confused by declarative pipeline trigger specifications

2019-09-26 Thread David Aldrich
>> We use declarative pipelines extensively, triggered by SCM change. We use a >> cron spec to specify a SCM polling interval. >> It seems that the trigger specification can be set in two places: in the GUI >> configuration for the job and in the pipeline itself. >> Do I need to set both tri

Help request for Java exception

2019-10-09 Thread David Aldrich
I am seeing this Java exception trace for one of our declarative scripts. It happens on a Centos 7 machine. Please can anyone suggest the reason? [Pipeline] End of Pipelinejava.lang.NoClassDefFoundError: Could not initialize class sun.security.ssl.SSLContextImpl$TLSContext at java.lang.Cla

Re: Help request for Java exception

2019-10-09 Thread David Aldrich
The exception started happening after a minor jdk upgrade: java-1.8.0-openjdk-1:1.8.0.181-3.b13.el7_5.x86_64 -> java-1.8.0-openjdk-1.8.0.222.b10-1.el7_7.x86_64 On Wed, Oct 9, 2019 at 1:54 PM David Aldrich wrote: > I am seeing this Java exception trace for one of our declarative scripts

Jenkins with Parallel Builds?

2020-01-15 Thread David Aldrich
Hi We build large C++ projects using Jenkins for Linux platforms. These build jobs currently run on a single executor. I want 'make -j' or ninja to compile concurrently on several cores to speed up the build time. How can I cause a job to utilise multiple executors on an agent in this way? I s

JAVA_HOME on Windows?

2020-01-20 Thread David Aldrich
Hi When running a Visual Studio job from a declarative script on a Windows agent I see: E:\jenkins\workspace\CMake_tests_1_Windows_trunk>call "C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Auxiliary\Build\vcvars64.bat" \Java\jre1.8.0_241\bin"" was unexpected at this time. I

Declarative script syntax: Archive from specific stage?

2020-01-23 Thread David Aldrich
I have a question about declarative script syntax. I have a multi-stage job, where each stage runs on a separate agent. Whether the job passes or fails, I want to archive some artefacts from the job, so I have to call archiveArtifacts from post::cleanup(). stages { stage(‘S1’) {

Re: Declarative script syntax: Archive from specific stage?

2020-01-23 Thread David Aldrich
> try this url > https://Jenkins.io/doc/pipeline/tour/tests-and-artifacts/ Thanks, but that doesn't address my situation where I have stages running on different agents and I want to archive results from a specific agent. > -- You received this message because you are subscribed to the Google

Re: Declarative script syntax: Archive from specific stage?

2020-01-23 Thread David Aldrich
> Did you try to write post after stage? It seems that is not allowed: WorkflowScript: 140: Expected a stage @ line 140, column 9. post{ ^ On Thu, Jan 23, 2020 at 4:34 PM David Aldrich wrote: > > try this url > > > https://Jenkins.io/doc/pipel

Re: Declarative script syntax: Archive from specific stage?

2020-01-24 Thread David Aldrich
>According to doc this is supported: https://jenkins.io/doc/book/pipeline/syntax/#post >Syntax is like this https://code-maven.com/slides/jenkins-intro/pipeline-post Thank you. That has fixed my problem. David -- You received this message because you are subscribed to the Google Groups "Jen

32-bit or 64-bit JRE for Windows 64-bit slave?

2013-06-07 Thread David Aldrich
Hi We run several Jenkins slaves on Windows XP 64-bit and are now build a Windows 7 64-bit slave. We found it necessary to install both 32-bit and 64-bit JRE on Windows XP 64-bit in order to get the Jenkins slave to launch. I doubt that installing both JRE's is really necessary. Please can an

RE: 32-bit or 64-bit JRE for Windows 64-bit slave?

2013-06-10 Thread David Aldrich
advise me of the correct way to configure a Win 7 64-bit Jenkins slave please? David From: Louis Roché [mailto:m...@louisroche.net] Sent: 07 June 2013 08:52 To: jenkinsci-users@googlegroups.com Cc: David Aldrich Subject: Re: 32-bit or 64-bit JRE for Windows 64-bit slave? Hi, I'm also using Wi

RE: 32-bit or 64-bit JRE for Windows 64-bit slave?

2013-06-11 Thread David Aldrich
'how-to' for configuring a Win 7 64-bit slave BR David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Richard J Sent: 10 June 2013 20:44 To: jenkinsci-users@googlegroups.com Cc: David Aldrich Subject: Re: 32-bit or 64-bit JRE for Wind

Struggling to launch Windows 7 64-bit slave

2013-06-11 Thread David Aldrich
Hi We are struggling to launch a Windows 7 64-bit slave. Our master is on Centos 5 and we have successfully launched Win XP 32-bit slaves and Win XP 64-bit slaves. I have looked at the Jenkins wiki articles about DCOM errors etc. Currently, the slave reports: ERROR: Access is denied. See h

RE: Struggling to launch Windows 7 64-bit slave

2013-06-12 Thread David Aldrich
This problem is now fixed. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 11 June 2013 16:50 To: jenkinsci-users@googlegroups.com Subject: Struggling to launch Windows 7 64-bit slave Hi We are struggling to

RE: Struggling to launch Windows 7 64-bit slave

2013-06-13 Thread David Aldrich
regards David From: bearrito [mailto:j.barrett.straus...@gmail.com] Sent: 12 June 2013 18:20 To: jenkinsci-users@googlegroups.com Cc: David Aldrich Subject: Re: Struggling to launch Windows 7 64-bit slave Can you post your fix in case it helps future users. On Tuesday, June 11, 2013 11:49:39 AM UTC-4,

Question about Jenkins polling

2013-06-19 Thread David Aldrich
Hi I think I understand the basics of Jenkins quite well but there is one area in which I am unsure how it will behave. I have some long regression tests, which I trigger using cron type schedules. Typically, they run once per day at 8pm. However, if no code changes have occurred that day, t

RE: Question about Jenkins polling

2013-06-19 Thread David Aldrich
Hi Thanks for both replies. > Are you wanting it to do this or not do this? I do want it to do what you describe, so that's fine. > It will run with the latest scm data at the time the job starts, not running > with the state of the scm at the time that it was queued. That is the crucial po

How to improve my bash script error handling?

2013-08-02 Thread David Aldrich
Hi Several of our Jenkins regression tests are controlled by bash scripts. As a beginner bash script writer, I would like some advice on how to improve the error handling in those scripts please. We use the bash shebang: #!/bin/bash -ex A typical test might compare some result files with ref

Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
Hi I have used Jenkins for a long time but am now using the MSBuild plugin for the first time, because we are migrating some build jobs from VC2008 to VC2010. I have added a 'MSBuild installation' in Jenkins with the following path: C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe In

RE: How do I stop Jenkins?

2013-09-04 Thread David Aldrich
Does your Jenkins master run on Windows or Linux? David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Ed Keith Sent: 04 September 2013 13:31 To: jenkinsci-users@googlegroups.com Subject: How do I stop Jenkins? I can't figure out how to shut down J

RE: Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
er. E.g. C:\winodws\system32 From: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: Wednesday, September 04, 2013 8:07 AM To: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@google

RE: Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
n settings for your job , if possible? And what are the steps you are adding for MSBuild? From: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: Wednesday, September 04, 2013 7:49 AM To:

RE: Help needed with MsBuild plugin

2013-09-04 Thread David Aldrich
kinsci-users@googlegroups.com> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: Wednesday, September 04, 2013 4:28 AM To: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com> Subject: Help needed with MsBuild plugin Hi I have used Jenkins for a l

RE: Help needed with MsBuild plugin

2013-09-05 Thread David Aldrich
ch Command" and write my query. It works for me so far. From: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: Wednesday, September 04, 2013 8:23 AM To: jenkinsci-users@googlegroups.com<ma

RE: [ANN] SSH Slaves 1.3

2013-10-07 Thread David Aldrich
Hi Stephen As of 7 October, Plugin Manager is still showing version 1.2 as the latest version. We currently have version 0.27 installed. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Stephen Connolly Sent: 04 October 2013 13:2

RE: [ANN] SSH Slaves 1.3

2013-10-08 Thread David Aldrich
Hi Stephen I wonder if you didn't see my comment yesterday. So here it is again: As of 8 October, Plugin Manager is still showing version 1.2 as the latest version. We currently have version 0.27 installed. Should Plugin Manager be showing 1.3? Best regards David From: jenkinsci-users@googl

How to use Jenkins to build TI Code Composer Studio projects?

2013-10-09 Thread David Aldrich
Hi I would like to build our TI Code Composer Studio (v5) projects using Jenkins . Please can anyone offer some hints on how best to do this? TI Code Composer Studio (CCS) v5 uses Eclipse and CDT, so perhaps users of other Eclipse C/C++ based projects could also comment. Do I need to do an Ec

RE: How to use Jenkins to build TI Code Composer Studio projects?

2013-10-09 Thread David Aldrich
backend? It actually manages all of the build stuff within the IDE itself? On Wed, Oct 9, 2013 at 3:49 AM, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi I would like to build our TI Code Composer Studio (v5) projects using Jenkins . Please can anyone offer some hints o

RE: How to use Jenkins to build TI Code Composer Studio projects?

2013-10-09 Thread David Aldrich
/3670/13226.aspx#13226 http://e2e.ti.com/support/development_tools/compiler/f/343/t/168570.aspx On Wed, Oct 9, 2013 at 6:20 AM, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Yes, it creates its makefiles automatically. Even if one could identify or export them, that wouldn

Help need to debug "channel is already closed" failure

2013-10-15 Thread David Aldrich
Hi I have a matrix job that is failing because the slave used by the job disconnects. The console output for the job is shown below. I am running Jenkins ver. 1.509.3 (LTS) with SSH Slaves Plugin 1.3 and Credentials plugin 1.8.3. The machines run Centos Linux. This problem appeared yesterday

RE: Help need to debug "channel is already closed" failure

2013-10-15 Thread David Aldrich
disconnect/reconnect fixed the problem. Best regards David > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of David Aldrich > Sent: 15 October 2013 09:46 > To: jenkinsci-users@googlegroups.com >

"Failed to test the validity of the user name ..."

2013-10-15 Thread David Aldrich
Hi We have seen this issue: JENKINS-12619 "Failed to test the validity of the user name on all security matrices since upgrade on our Jenkins instance for a long time. We are running Jenkins 1.509.3 (LTS). Does anyone have a solution for this issue please? Best regards David -- You receiv

RE: "Failed to test the validity of the user name ..."

2013-10-15 Thread David Aldrich
m] On Behalf Of Stephen Connolly Sent: 15 October 2013 14:35 To: jenkinsci-users@googlegroups.com Subject: Re: "Failed to test the validity of the user name ..." Have you tried the troubleshooting groovy script in the Troubleshooting section of the LDAP plugin wiki page? On 15 October 20

RE: "Failed to test the validity of the user name ..."

2013-10-15 Thread David Aldrich
ectory plugin to connect to Active Directory... and if that doesn't work for you, then you should file some bugs and pester Kohsuke to fix them bugs. On 15 October 2013 14:44, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Stephen Thanks for your reply. Would it help if we u

RE: "Failed to test the validity of the user name ..."

2013-11-04 Thread David Aldrich
groups.com] On Behalf Of Stephen Connolly Sent: 15 October 2013 16:10 To: jenkinsci-users@googlegroups.com Subject: Re: "Failed to test the validity of the user name ..." Blame Kohsuke if it goes wrong ;-) On 15 October 2013 16:03, David Aldrich mailto:david.aldr...@emea.nec.com>

Ongoing issue with Active Directory plugin

2013-11-28 Thread David Aldrich
Hi I am running Jenkins 1.509.4 LTS with Jenkins Active Directory Plugin v.1.33. In Jenkins > Configure Global Security > Authorization > Project-based Matrix Authorization Strategy, I see the following error for one or more users: Failed to test the validity of the user name (show details) or

Jenkins backup problem

2013-11-29 Thread David Aldrich
Hi We run Jenkins 1.509.4 LTS on Centos 5.9. We have used the Hudson backup plugin for several years without problem, but the backups recently started to fail with this type of error: [ INFO] Backup started at [11/29/13 08:33:00] [ INFO] Setting hudson in shutdown mode to avoid files corruptio

RE: Jenkins backup problem

2013-11-29 Thread David Aldrich
prüngliche Nachricht- Von: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] Im Auftrag von David Aldrich Gesendet: Freitag, 29. November 2013 10:05 An: jenkinsci-users@googlegroups.com Betreff: Jenkins backup problem Hi We run Jenkins 1.509.4 LTS on Centos 5.9. We

Disk usage plugin not working

2013-12-04 Thread David Aldrich
Hi We are running Jenkins 1.509.4 LTS on Centos 5 or 6. I have installed the Disk Usage plugin but, when I select 'Jenkins > Disk usage' I get an 'Internet Explorer cannot display the webpage' error. The page also does not display in Firefox. The Disk usage plugin settings are the defaults -

RE: Disk usage plugin not working

2013-12-09 Thread David Aldrich
. Best regards David From: Tim Drury [mailto:tdr...@gmail.com] Sent: 06 December 2013 13:02 To: jenkinsci-users@googlegroups.com Cc: David Aldrich Subject: Re: Disk usage plugin not working David, we had the same issue, but instead of an error in the browser, the request never came back. The thread

LTS 1.532.1 ?

2013-12-09 Thread David Aldrich
Hi When will the new LTS (1.532.1) be advertised in Jenkins? Best regards David -- 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...@g

RE: LTS 1.532.1 ?

2013-12-17 Thread David Aldrich
Of Stephen Connolly Sent: 09 December 2013 14:19 To: jenkinsci-users@googlegroups.com Subject: Re: LTS 1.532.1 ? Kohsuke is in Brazil at present, so may not be able to push the changes remotely. On 9 December 2013 14:08, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi When

RE: LTS 1.532.1 ?

2013-12-17 Thread David Aldrich
listed when you browse to "Long-Term Support Release". http://jenkins-ci.org/changelog-stable Since it is based on 1.532 whatever introduced previously in 1.528 was automatically included. So I say "--sessionTimeout" is a JENKINS JAVA OPTS you can use. From: David Aldric

How to use --sessionTimeout?

2013-12-17 Thread David Aldrich
Hi Having upgraded to 1.532.1 LTS, how do I use the --sessionTimeout parameter? Is it something like: sudo /etc/init.d/jenkins start -sessionTimeout=1800 where the timeout value is in seconds? Best regards David -- You received this message because you are subscribed to the Google Groups "

RE: How to use --sessionTimeout?

2013-12-19 Thread David Aldrich
y add "-DsessionTimeout=" in your jenkins's start-up script like the rest. From: David Aldrich mailto:david.aldr...@emea.nec.com>> Reply-To: "jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com>" mailto:jenkinsci-users@googlegroups.com&

RE: How to use --sessionTimeout?

2013-12-20 Thread David Aldrich
I have also tried: # /etc/init.d/jenkins start --sessionTimeout 1440 But the session timeout is still much less than 1 day. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 19 December 2013 16:37 To

RE: How to use --sessionTimeout?

2013-12-24 Thread David Aldrich
t.d/jenkins start --sessionTimeout 1440 But the session timeout is still much less than 1 day. Best regards David From: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com> [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 19 December 2013 16

RE: When do build results disappear?

2013-12-31 Thread David Aldrich
Did you activate the 'Discard Old Builds' setting in the project's configuration? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Andy Jewell Sent: 31 December 2013 15:35 To: jenkinsci-users@googlegroups.com Subject: When do build results disappear?

What exactly is 'response time'?

2014-01-17 Thread David Aldrich
Hi The 'Manage nodes' page of our Jenkins installation shows widely different response time for our slaves, ranging from 31ms to 12s. The figure at the top of the column is 17min. Our master and most slaves run Linux. All run on an internal network. What exactly does 'response time' indicate

RE: What exactly is 'response time'?

2014-01-17 Thread David Aldrich
ing packet took to route through the remoting layer. 12s does sound a bit bad... the ping may have hit the node when busy archiving artifacts or during a GC pause... or are some of your slaves VMs? On 17 January 2014 14:12, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi The &#x

RE: What exactly is 'response time'?

2014-01-17 Thread David Aldrich
17 January 2014 14:12, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi The 'Manage nodes' page of our Jenkins installation shows widely different response time for our slaves, ranging from 31ms to 12s. The figure at the top of the column is 17min. Our master and mos

RE: What exactly is 'response time'?

2014-01-17 Thread David Aldrich
e critical, rather indicative of a poorly resourced VM at the time the ping was measured. If the same slave is consistently showing poor ping times when idle... that would indicate a potential issue On 17 January 2014 14:32, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Stephe

LDAP Plugin update failure

2014-01-21 Thread David Aldrich
Hi I am trying to download LDAP Plugin v.1.8, but for the last two days I have got error: hudson.util.IOException2: Failed to download from http://updates.jenkins-ci.org/download/plugins/ldap/1.8/ldap.hpi Does this indicate a problem with the updates server? Best regards David -- You rece

A question about matrix parent build jobs

2014-01-21 Thread David Aldrich
Hi I am using the 'Matrix Tie Parent' plugin to tie the parent build job of our matrix jobs to a specific node. I want the parent job to be allocated to a Linux slave, not one of our Windows slaves, so I chose to tie it to our Jenkins master (which runs on Linux). My question is: Can multipl

RE: LDAP Plugin update failure

2014-01-21 Thread David Aldrich
Ok, it's working for me now. Thanks David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Maciej Jaros Sent: 21 January 2014 10:01 To: jenkinsci-users@googlegroups.com Subject: Re: LDAP Plugin update failure David Aldrich (2014-01-21 09:26):

RE: Re:A question about matrix parent build jobs

2014-01-22 Thread David Aldrich
Hi Thanks for your reply. And, the general rule is always one job per executor, am I correct? BR David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Kevin Fleming (BLOOMBERG/ 731 LEXIN) Sent: 22 January 2014 15:00 To: jenkinsci-users@googlegro

RE: Re:A question about matrix parent build jobs

2014-01-22 Thread David Aldrich
Ok, thanks! From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Kevin Fleming (BLOOMBERG/ 731 LEXIN) Sent: 22 January 2014 15:19 To: jenkinsci-users@googlegroups.com Subject: RE: Re:A question about matrix parent build jobs That's not a rule, it's the l

RE: A question about matrix parent build jobs

2014-01-23 Thread David Aldrich
Hi Daniel > Except that Matrix parent jobs are lightweight since 1.337, which means its > executors are created dynamically on demand. Thanks very much for this information. Best regards David -Original Message- From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegro

Jenkins bug JENKINS-12235 - suggestions please

2014-01-24 Thread David Aldrich
Hi One of our users writes: Bug https://issues.jenkins-ci.org/browse/JENKINS-12235 is now seriously hampering our uptake of Jenkins. Our builds are very unreliable, to the point where we can't really use Jenkins for any critical regression testing or compilations because they too often fail to

RE: Jenkins bug JENKINS-12235 - suggestions please

2014-01-24 Thread David Aldrich
s the script is still in use >by the commands that are running in the background... so windows will keep the >file as locked) A lot of people have been faffing around looking at the ssh channel stuff... this sounds more like a process launcher issue rather than an ssh channel issue.

RE: Jenkins bug JENKINS-12235 - suggestions please

2014-01-24 Thread David Aldrich
ot of people have been faffing around looking at the ssh channel stuff... this sounds more like a process launcher issue rather than an ssh channel issue. On 24 January 2014 13:37, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi One of our users writes: Bug https://issues.jenki

RE: Jenkins bug JENKINS-12235 - suggestions please

2014-01-24 Thread David Aldrich
: Re: Jenkins bug JENKINS-12235 - suggestions please You might want to try anything from 1.533 onwards... I'm not saying the issue is fixed... just that those versions are at least not hiding the next link in the chain towards the root cause. On 24 January 2014 14:06, David Al

Can't login to Jenkins after upgrade to 1.549

2014-02-04 Thread David Aldrich
Hi I have just upgraded from Jenkins 1.532.1 LTS to 1.549 (so that I can use the latest diagnostic features). We use LDAP user authentication. After the upgrade I cannot login to Jenkins but get directed to: https:///jenkins/j_acegi_security_check

Upgrade woes from Jenkins 1.532.1 to 1.549

2014-02-05 Thread David Aldrich
dvise me what to do? Best regards David --- David Aldrich NEC Telecom MODUS Ltd DDI: +44(0)1372 381857, E: david.aldr...@emea.nec.com<mailto:david.aldr...@emea.nec.com> -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To u

RE: Upgrade woes from Jenkins 1.532.1 to 1.549

2014-02-05 Thread David Aldrich
Rolled back to Jenkins 1.542 and that seems to be working ok for us. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 05 February 2014 08:55 To: jenkinsci-users@googlegroups.com Subject: Upgrade woes from

RE: [ANN] Subversion Plugin 2.0 being released

2014-02-06 Thread David Aldrich
Hi I have just upgraded from Subversion 1.54 plugin to v.2.00. Launching a job that does a clean checkout on a Windows slave now repeatedly fails with this exception: Checking out at revision '2014-02-06T13:42:30.165 +' ERROR: Failed to check out org.tmatesoft.svn.core.SVNCancelExcepti

RE: [ANN] Subversion Plugin 2.0 being released

2014-02-06 Thread David Aldrich
:05 To: jenkinsci-users@googlegroups.com Cc: jenkinsci-...@googlegroups.com Subject: Re: [ANN] Subversion Plugin 2.0 being released Did the credentials get migrated correctly? On 6 February 2014 13:55, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi I have just upgraded from Sub

RE: [ANN] Subversion Plugin 2.0 being released

2014-02-06 Thread David Aldrich
credentials for that specific job were not migrated. You should be able to select the credentials, or worst case add them again. On 6 February 2014 14:08, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: How would I check that? I have just downgraded to 1.54. Now, on the config

RE: [ANN] Subversion Plugin 2.0 being released

2014-02-06 Thread David Aldrich
y be best to upgrade ssh-slaves too if you upgrade ssh-credentials) plugins for the best UX. On 6 February 2014 15:08, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Stephen I upgraded to svn plugin 2.0 again. In the job configuration screen the credentials drop-down read '

RE: [ANN] Subversion Plugin 2.0 being released

2014-02-07 Thread David Aldrich
leased yeah I certainly was not expecting anything that esoteric ;-) On 6 February 2014 16:02, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Stephen Thanks, I am using the latest plugins. Our Jenkins instance uses 'user' 'hudsonuser' for svn acce

Why might job fail with "No route to host" ?

2014-02-11 Thread David Aldrich
Hi Please can anyone suggest why a job, running on a Windows slave, might fail part way through with error "No route to host"? We are running Jenkins 1.542 on a Linux master. The entire exception trace is provided below. Best regards David hudson.remoting.RequestAbortedException

RE: MSBuild Visual Studio

2014-02-19 Thread David Aldrich
Hi You need to specify the path to msbuild. The plugin does not do that for you AFAIK. We just use a Windows batch command build step and do: %MSBUILD% MSVC\mysln.sln /p:Configuration="Release" /p:useenv=true /flp:logfile=MyOutput.log;verbosity=diagnostic where: MSBUILD="C:\\Windows\\Microso

svn authentication failure for external link

2014-02-28 Thread David Aldrich
Hi We are running Jenkins 1.551 with svn plugin 2.1. For a certain Jenkins project, we have a problem with svn authentication for an svn external reference. That job checks out an svn project that contains an external link: /trunk/testbench/Scenarios -> /branches/Scenarios When we run the

RE: svn authentication failure for external link

2014-03-03 Thread David Aldrich
Hi This problem appears to have been resolved by upgrading to Jenkins 1.552 and svn plugin 2.2. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 28 February 2014 09:10 To: jenkinsci-users@googlegroups.com

RE: plugin wishlist/ideas

2014-03-05 Thread David Aldrich
Hi Tomas > the part of my Master thesis assignment is to create some plugin for Jenkins. > So if you (or your company) have any wish or idea, please let me know. :) You could look at creating a plugin to modify the scheduling behaviour. The description for the ‘Least Load’ plugin reads: “By de

RE: Jenkins 1.466.2 LTS Changelog

2012-09-18 Thread David Aldrich
I would also be grateful for the 1.466.2 change log. Can it be provided please? David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of SETCH, Adam Sent: 16 September 2012 23:52 To: jenkinsci-users@googlegroups.com Subject: Jenkins 1.466.2 LTS Changel

Windows slave is failing to launch

2012-09-21 Thread David Aldrich
Hi This morning our Windows Jenkins slave has gone offline. It has been working happily for many months. I don't know what has changed that may have caused the problem. I have pasted the log message below. Any suggestions for a fix please? Best regards David Connecting to Checking if J

RE: Windows slave is failing to launch

2012-09-21 Thread David Aldrich
Sorry, fixed by re-installing JRE locally. David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 21 September 2012 08:33 To: jenkinsci-users@googlegroups.com Subject: Windows slave is failing to launch Hi This morning our

'Even Load Strategy' Plugin

2012-09-25 Thread David Aldrich
Hi We use open source Jenkins but have a use case that would benefit from an 'even load' scheduler algorithm. I.e. where idle machines are preferred to the build machine previously used. I have just come across Cloudbees' Jenkins Enterprise 'Even Load Strategy Plugin'. I don't know yet what t

RE: 'Even Load Strategy' Plugin

2012-09-25 Thread David Aldrich
.com Subject: Re: 'Even Load Strategy' Plugin 2012/9/25 David Aldrich mailto:david.aldr...@emea.nec.com>> Hi We use open source Jenkins but have a use case that would benefit from an 'even load' scheduler algorithm. I.e. where idle machines are preferred to the build

RE: 'Even Load Strategy' Plugin

2012-09-25 Thread David Aldrich
e the last slave that was used for the same job. I will share any design/thoughts/changes if and when I have them. ... Mgimza On Tue, Sep 25, 2012 at 10:57 AM, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi We use open source Jenkins but have a use case that would benef

RE: 'Even Load Strategy' Plugin

2012-09-25 Thread David Aldrich
> No evaluation restriction, you can run CloudBees Enterprise plugins on you > own > jenkins if you don't want / can't install Jenkins Enteprise. You'll need a > valid license, > and can request an evaluation one to test those plugins. Well, I don't know. It looks like an evaluation license t

RE: 'Even Load Strategy' Plugin

2012-09-26 Thread David Aldrich
is only to evaluate, not to use for production. Production use of the plugins requires a purchased license. On Tuesday, September 25, 2012 11:21:34 AM UTC-7, Nicolas De loof wrote: 2012/9/25 David Aldrich mailto:david@emea.nec.com>> > No evaluation restriction, you can run CloudBees E

RE: 'Even Load Strategy' Plugin

2012-09-26 Thread David Aldrich
Thanks for the clarification. It would be nice if there was some initiative to produce an open-source plugin with similar functionality. But I guess that will not come from CloudBees. Best regards David

RE: 'Even Load Strategy' Plugin

2012-09-26 Thread David Aldrich
ci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Stephen Connolly Sent: 26 September 2012 09:38 To: jenkinsci-users@googlegroups.com Subject: Re: 'Even Load Strategy' Plugin On 26 September 2012 09:12, David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Thanks

RE: Is LTS 1.466.2 releases?

2012-09-28 Thread David Aldrich
From earlier thread ‘Re: RE: Jenkins 1.466.2 LTS Changelog’: Hi, I'm not sure how to fix changelog for already release version, but the only change was security bug fix, for details see [1] Vojta [1] https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2012-09-17 From:

Why are all parameters for slave showing 'N/A'?

2012-11-06 Thread David Aldrich
Hi We are running Jenkins 1.466.2. Under one of our slaves is showing all parameters as 'N/A' (for 'response time',' free swap space', etc), but the slave does not appear to be offline. Why might this be please? Best regards David

SVN version compatibility question

2012-11-12 Thread David Aldrich
Hi We are using Jenkins SVN plugin version 1.34, which uses a svn 1.6 client. We are planning to upgrade our slaves to use svn 1.7 clients. Is it ok to run a svn 1.6 compatible plugin against svn 1.7 slaves? Best regards David

RE: Release of new long term support version?

2012-11-14 Thread David Aldrich
Will the next LTS release include the latest version of the SVN plugin? I would like to see that happen, if that release of the plugin is stable. BR David > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of Kohsuke Kawa

RE: Release of new long term support version?

2012-11-14 Thread David Aldrich
jenkinsci-users@googlegroups.com Subject: Re: Release of new long term support version? Given that the change would need soak time, and also given that trunk is only at 1.39 I don't think the LTS will have a newer version than was in 1.480 On 14 November 2012 15:13, David Aldrich ma

Advice requested: bash vs python scripts in Jenkins

2012-11-23 Thread David Aldrich
Hi We use Jenkins to run regression tests on our C++ console application. Each test consists of a bash script that typically runs the application with defined test parameters and then compares the output files with reference files using 'diff'. I am now thinking of moving from bash scripts to

RE: Advice requested: bash vs python scripts in Jenkins

2012-11-23 Thread David Aldrich
Thanks Clem, Best regards David

RE: Advice requested: bash vs python scripts in Jenkins

2012-11-23 Thread David Aldrich
Hi Mark and Clem Thanks very much for your replies. They were both very helpful. Best regards David

RE: What version is SVN client - quick question

2012-11-30 Thread David Aldrich
You need to check which version of the SVN Plugin you are using and then look up that plugin’s wiki page to see which version of svn it supports (as Craig suggested). From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Craig Sent: 30 November 2012 12:57

Java error since upgrade to 1.480.2 LTS

2013-01-22 Thread David Aldrich
Hi This morning I upgraded Jenkins from 1.480.1 to 1.480.2 and restarted Jenkins. Now one of my jobs fails with: Started by user FATAL: null java.util.NoSuchElementException at java.util.AbstractList$It

RE: Java error since upgrade to 1.480.2 LTS

2013-01-22 Thread David Aldrich
the problem seems to be caused by > the JobConfigHistory plugin. Try to update this plugin to a newer version. > > As experience shows after an upgrade of Jenkins it is often necessary to > upgrade some plugins. > > Regards, > Riccardo > > Am 22.01.2013 13:09, schrieb Da

RE: Java error since upgrade to 1.480.2 LTS

2013-01-22 Thread David Aldrich
suggests the problem seems to be > > caused by the JobConfigHistory plugin. Try to update this plugin to a > > newer version. > > > > As experience shows after an upgrade of Jenkins it is often necessary > > to upgrade some plugins. > > > > Regards, > >

  1   2   3   4   >