RE: Syntax for "mail to" in declarative script?

2017-05-15 Thread David Aldrich
Behalf Of David Aldrich > Sent: 15 May 2017 13:19 > To: jenkinsci-users@googlegroups.com > Subject: Syntax for "mail to" in declarative script? > > Hi > > Where can I find a definition and syntax for "mail to" for a declarative > script? > > Speci

RE: Syntax for "mail to" in declarative script?

2017-05-15 Thread David Aldrich
I'm a little further on - I've added a call to emailext. Below is declarative script. But I get error: An attempt to send an e-mail to empty list of recipients, ignored. How can I set the recipients list? Do I need another script step? stages { stage('build') {

How to specify recipients in email-ext step in declarative script?

2017-05-16 Thread David Aldrich
Hi I am experimenting with declarative scripts and have this simple script: pipeline { agent { label "mypc" } stages { stage('build') { steps { sh 'python --version' } } } post { success { script: emailext

RE: How to specify recipients in email-ext step in declarative script?

2017-05-16 Thread David Aldrich
to:a...@him.com>, subject: "FAILURE", body: "FAILURE!" ) } } On Tue, May 16, 2017 at 11:25 AM David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi I am experimenting with declarative scripts and have

RE: How to specify recipients in email-ext step in declarative script?

2017-05-16 Thread David Aldrich
lass: 'DevelopersRecipientProvider'] ]) emailext(..., to: recipients) } On Tue, May 16, 2017 at 6:18 AM David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Danny, That worked (with email addresses in quotes) – thanks. Do you know how I would specify ‘to:’ as a

RE: How to specify recipients in email-ext step in declarative script?

2017-05-16 Thread David Aldrich
ents Also, you may be missing a '}' to close the script block. On Tue, May 16, 2017 at 7:12 AM David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Slide Thanks. I tried the code below based on your suggestion but the syntax of my change isn’t quite right. Can

RE: How to specify recipients in email-ext step in declarative script?

2017-05-17 Thread David Aldrich
m: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 16 May 2017 17:02 To: jenkinsci-users@googlegroups.com Subject: RE: How to specify recipients in email-ext step in declarative script? Thanks Slide David From: jenkinsci-users@googlegroups.com

RE: How to specify recipients in email-ext step in declarative script?

2017-05-17 Thread David Aldrich
: '${DEFAULT_SUBJECT}', to: 'daldrich') } But the result is an email to daldrich but not to the culprits. Could this be a bug in the emailext plugin? BR David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf

RE: How to specify recipients in email-ext step in declarative script?

2017-05-17 Thread David Aldrich
d there have been no changes, then there are no culprits. The culprits are pulled from the changes from the scm you specify. On Wed, May 17, 2017, 04:07 David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: I tried replacing my code with that produced by the snippet generator:

RE: How to specify recipients in email-ext step in declarative script?

2017-05-18 Thread David Aldrich
er if you want anyone who added a change to be emailed. On Wed, May 17, 2017 at 7:27 AM David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Slide I am running the job manually. There are commits by another user since the job last ran, so I assume there should be culprits. The job a

RE: How to specify recipients in email-ext step in declarative script?

2017-05-18 Thread David Aldrich
Thu, May 18, 2017 at 2:33 AM David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Slide Thanks for helping me with this. I am using a declarative pipeline. In the ‘post’ clause, I set ‘success’, ‘failure’, ‘unstable’ and ‘changed’ to all be: script{ emailext

One Jenkinsfile per repo in multi-branch workflows?

2017-05-18 Thread David Aldrich
Hi As the free-style Multi-Branch Project plugin is deprecated, I am experimenting with the Multibranch Pipeline job type. With the Multi-Branch Project plugin it was possible to have multiple multi-branch jobs. We took advantage of that and had multiple jobs to build different executables in

RE: One Jenkinsfile per repo in multi-branch workflows?

2017-05-19 Thread David Aldrich
> There seems to be some work done in this regard, but it seems to be lagging, > so I can't tell if it's going to stay this way or not. Thanks for your answer. Good to know it is being worked on. David -- You received this message because you are subscribed to the Google Groups "Jenkins Users"

How to use Jenkins CLI for linter?

2017-05-19 Thread David Aldrich
Hi I want to use the Jenkins declarative script linter via the CLI. I have specified a fixed SSHD port in Jenkins Global Security. I have shared my SSH public key with my account on the Jenkins server, so I can connect to the server using SSH. However, when I try to run the linter I get an err

RE: How to specify recipients in email-ext step in declarative script?

2017-05-19 Thread David Aldrich
e culprits on its own for pipeline jobs and it may not have all the info that a free style project does. On Thu, May 18, 2017, 07:12 David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Well I haven’t found definitions of the providers so I can’t be sure, but the free-style job s

Declarative script: specify build trigger in GUI or script?

2017-05-22 Thread David Aldrich
Hi, I'm confused about how to specify a build trigger for a declarative script. I want the job to be triggered by an SCM commit so I specified in my script: triggers { pollSCM('H/5 * * * *') } to poll every 5 minutes. However, the job is not being run even though commits have

RE: Declarative script: specify build trigger in GUI or script?

2017-05-24 Thread David Aldrich
David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi, I'm confused about how to specify a build trigger for a declarative script. I want the job to be triggered by an SCM commit so I specified in my script: triggers { pollSCM('H/5 * * * *') } to

Plugins metadata failing signature check?

2017-06-07 Thread David Aldrich
After checking for updated plugins this morning I see: "None of the tool installer metadata passed the signature check" 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 emai

Multibranch pipeline job doesn't fully support Subversion?

2017-06-07 Thread David Aldrich
Hi There is a known issue with the Subversion plugin that 'Additional Credentials' must be specified if Externals are used. Most job types allow the user to specify the 'Additional Credentials' in the GUI, but the Multibranch pipeline job does not. To me, this is a show-stopper for using that

RE: Multibranch pipeline job doesn't fully support Subversion?

2017-06-08 Thread David Aldrich
From: Oleg Nenashev [mailto:o.v.nenas...@gmail.com] Sent: 08 June 2017 11:18 To: Jenkins Users Cc: David Aldrich Subject: Re: Multibranch pipeline job doesn't fully support Subversion? The current state of the SVN plugin is discussed here: https://groups.google.com/forum/#!topic/jenkinsc

RE: Multiple Jenkinsfiles in a single repo - Clarification

2017-07-18 Thread David Aldrich
I haven’t tried it, but I expect that: Build configuration > Script Path allows you to specify the specific Jenkinsfile that you want to run. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Simon Cowie Sent: 18 July 2017 00:40 To: Jenkins Users Sub

Stuck declarative script

2017-07-26 Thread David Aldrich
Hi I have a declarative script job that appears to have got stuck because it's slave rebooted. Now I can't kill it. When I click the red cross against the job I see: "Are you sure you want to abort null". I accept but nothing happens. It also survives a Jenkins restart. How can I kill it

RE: Stuck declarative script

2017-07-26 Thread David Aldrich
The job's log states: Waiting to resume part of MyJob_sw_builds » trunk #554: ??? Still paused -- 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+

RE: Stuck declarative script

2017-07-26 Thread David Aldrich
Fixed now. Needed to resume. -- 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 vi

Preferred Git server for Jenkins?

2017-08-31 Thread David Aldrich
Hi Our company uses Subversion for version control but I want to investigate providing a Git server to support Jenkins declarative scripts and Blue Ocean. (I realise that declarative scripts can be stored in Subversion, but I think that Git support for them is better). We have the option of u

RE: Preferred Git server for Jenkins?

2017-08-31 Thread David Aldrich
Hi Dirk and Andreas Thanks for your answers, 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...@googlegroups.com.

Advice wanted on multibranch declarative script for Subversion project

2017-09-04 Thread David Aldrich
Hi I want to write a multibranch declarative script for a project stored in Subversion. I have already done this for another project (which worked) but this new one has the complication that the repo uses externals. Unfortunately the multibranch pipeline GUI screen does not offer the option t

Jenkinsfile naming convention?

2017-09-21 Thread David Aldrich
Hi My understanding is that it is now possible to have multiple Jenkinsfiles in a repository. Is there any convention for naming Jenkinsfiles? Do you always call them Jenkinsfile and indicate their function in a directory name? Or do you indicate their function in the filename? Best regards

Problem with environment variable in declarative script

2017-09-21 Thread David Aldrich
Hi My Jenkinsfile contains: environment { SCRIPTS_PATH="${WORKSPACE}/Tools/Jenkins/PythonScripts" } When the script runs I get exception: groovy.lang.MissingPropertyException: No such property: WORKSPACE for class: groovy.lang.Binding at groovy.lang.Binding.getVariable(B

RE: Problem with environment variable in declarative script

2017-09-22 Thread David Aldrich
}/tools/Jenkins/PythonScripts" On Thursday, September 21, 2017 at 9:48:43 AM UTC-6, David Aldrich wrote: Hi My Jenkinsfile contains: environment { SCRIPTS_PATH="${WORKSPACE}/Tools/Jenkins/PythonScripts" } When the script runs I get exception: groovy.lang.MissingPrope

Trouble running JNLP slave as a service in Windows 10

2017-10-04 Thread David Aldrich
Hi I want to install a JNLP slave as a service in Windows 10. If I use the 'easy' method of going to the node page, from the slave machine, and clicking on the Launch button, the slave launches. But if I select 'File > Install as a service' I get an exception: [cid:image001.png@01D33D05.743EF4

RE: Trouble running JNLP slave as a service in Windows 10

2017-10-04 Thread David Aldrich
chieve your goal. От: jenkinsci-users@googlegroups.com<mailto:jenkinsci-users@googlegroups.com> mailto:jenkinsci-users@googlegroups.com>> от имени David Aldrich mailto:david.aldr...@emea.nec.com>> Отправлено: 4 октября 2017 г. 17:42 Кому: jenki

RE: Multibranch checkout for jenkinsfile

2017-10-09 Thread David Aldrich
If I may comment on this, I think the main issue is that there is currently no maintainer for the svn plugin. So, even if someone was able to make the changes Stephen suggested, they may not be released. It’s quite a problem for some of us that Subversion is no longer well supported in Jenkins

'%2f' in multibranch pipeline project name

2017-10-10 Thread David Aldrich
Hi I have a multibranch pipeline project (declarative script), which I run against a Subversion repository. The format of the branches is: branches/branch_name my multibranch pipeline project is rendering these names with '%2f' instead of '/'. I think this issue has been reported in the past

How to resolve 'Failed Loading item ' ?

2017-10-18 Thread David Aldrich
Hi I have deleted some jobs that used the deprecated multi-branch project plugin. I have also uninstalled that plugin. Since restarting the system (running Jenkins 2.85) I get exceptions for those deleted jobs: Failed Loading item com.thoughtworks.xstream.mapper.CannotResolveClassException:

RE: How to resolve 'Failed Loading item ' ?

2017-10-18 Thread David Aldrich
Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of Daniel Beck > Sent: 18 October 2017 10:02 > To: jenkinsci-users@googlegroups.com > Subject: Re: How to resolve 'Failed Loading item ' ? > > &

Declarative script: 'bat' command fails but job succeeds

2017-10-18 Thread David Aldrich
Hi I have a declarative script that runs a 'bat' step. That step builds some VS Studio projects on a Windows slave by calling msbuild: steps { bat ''' call "%VSMSBUILDCMD%" msbuild %WORKSPACE%\\MSVC\\ /p:Configuration=config_0

RE: Declarative script: 'bat' command fails but job succeeds

2017-10-18 Thread David Aldrich
LURE So I had to explicitly check the errorlevel to detect the failure. Does this mean there is this a bug in the declarative script plugin? Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of David Aldrich Sent: 18 October 201

RE: Declarative script: 'bat' command fails but job succeeds

2017-10-18 Thread David Aldrich
Here’s a better view of my script: pipeline { agent none options { buildDiscarder(logRotator(numToKeepStr: '20')) } triggers { pollSCM('H/5 * * * *') } stages { stage('build_gcc') { } stage('build_VisualStudio') { ag

RE: Declarative script: 'bat' command fails but job succeeds

2017-10-18 Thread David Aldrich
Yes, that’s right. Sorry for using wrong term. -- 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 discus

RE: Declarative script: 'bat' command fails but job succeeds

2017-10-19 Thread David Aldrich
Thanks very much for your reply. > Take care batch error level only is valid for the last command and not a > cumulative flag. Yes, that was exactly the issue. I followed your advice and the script works correctly now. > Also make sure you give the proper  bat argument returnStatus into your

RE: Declarative script: 'bat' command fails but job succeeds

2017-10-19 Thread David Aldrich
Thanks for your answer. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of jer...@bodycad.com Sent: 19 October 2017 15:36 To: Jenkins Users Subject: Re: Declarative script: 'bat' command fails but job succeeds Not sure about declarative pipeline (I hav

Specifying Jenkins startup parameters

2017-11-10 Thread David Aldrich
Hi We typically restart Jenkins using 'Restart Safely' from the root menu. We now want to specify the session timeout using a startup parameter: java -jar jenkins.war --sessionTimeout=10080 How do people typically specify startup parameters? Should I use a script and never restart from the ro

RE: Specifying Jenkins startup parameters

2017-11-14 Thread David Aldrich
i.jenkins.io/display/JENKINS/Installing+Jenkins+on+Red+Hat+distributions If you're running on Windows, there is a configuration file written to the installation directory which can be changed. See https://wiki.jenkins.io/display/JENKINS/Thanks+for+using+Windows+Installer Mark Waite On Fri, Nov

RE: Specifying Jenkins startup parameters

2017-11-14 Thread David Aldrich
operating system level startup scripts. You need the operating system level restart, like /etc/init.d/jenkins restart. Mark Waite On Tue, Nov 14, 2017, 2:46 AM David Aldrich mailto:david.aldr...@emea.nec.com>> wrote: Hi Mark Thanks for your reply. I’m working on Centos 5, so I set th

Jobs waiting in build queue but executors are free

2016-08-16 Thread David Aldrich
Hi We are running Jenkins 1.656. There are multiple jobs in the build queue 'waiting for next available executor'. But there are free executors available for these jobs. Why might the jobs be stuck in the build queue? Best regards David -- You received this message because you are subscri

How to configure logging?

2016-09-09 Thread David Aldrich
Hi This is a basic question on logging. If I select: Manage Jenkins > System Log I just see 'All Jenkins Logs' and that takes me to a page with about 500 lines of logging info. I have seen talk of rotating logs. How should I set things up to give me longer lasting logs? Best regards David

RE: BlueOcean plugin now available in main update center

2016-09-16 Thread David Aldrich
Hi I installed the BlueOcean plugin on our test server, and I seem to have lost the ability to login to Jenkins there. Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of James Dumay Sent: 15 September 2016 17:05 To: Jenkins Users

RE: Multi Branches SVN

2016-10-06 Thread David Aldrich
Have you looked at this plugin? https://wiki.jenkins-ci.org/display/JENKINS/Multi-Branch+Project+Plugin -- 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 jenkins

RE: Rendering of SVN changes in build Changes page

2016-10-06 Thread David Aldrich
SVN Changes are working fine for me in Jenkins 2.22. -- 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

Restarting Jenkins master while running jobs?

2016-10-31 Thread David Aldrich
Hi Our Jenkins instance runs some very long-running simulation jobs. These can run for up to 5 weeks. This makes it difficult to schedule restarts for software updates. Is it possible to restart Jenkins master without stopping jobs that are running on slaves? Best regards David -- You rece

RE: Restarting Jenkins master while running jobs?

2016-10-31 Thread David Aldrich
Hi Daniel > In the current update site, I found several Docker-related plugins, and of > course Pipeline Durable Task Step plugin, which underlies sh/bat Pipeline > build > steps. Thanks for your answer. I guess I should convert my current job to use Pipeline build steps and then use the Pipeli

Unexpected workspace cleanup caused job to fail

2017-01-13 Thread David Aldrich
Hi Last night one of our regression tests failed part way through because its workspace was spontaneously deleted. The system log shows that 'Workspace clean-up' happened at the time of the failure: Jan 12, 2017 9:00:00 PM INFO hudson.triggers.SCMTrigger$Runner run SCM changes detected in tml

RE: Unexpected workspace cleanup caused job to fail

2017-01-13 Thread David Aldrich
Hi Matthew Yes that looks related. I will add a comment there. Thanks David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of matthew.web...@diamond.ac.uk Sent: 13 January 2017 11:18 To: jenkinsci-users@googlegroups.com Subject: RE: Unexpected works

Re: Recommended way to setup a windows agent nowadays ?

2020-11-26 Thread David Aldrich
I would like to connect to Windows agents via SSH (currently using JNLP). I've installed OpenSSH client and server on the Windows machine, but not sure what to do next. In the agent configuration I've selected: 'Launch agents via ssh' but when I launch I get: [11/26/20 17:49:12] [SSH] Opening SS

Java install for Windows agent?

2020-11-26 Thread David Aldrich
Hi I have now partially succeeded in connecting to a Windows 10 agent from Jenkins via ssh. The ssh part succeeds but the connection then fails with: "Couldn't figure out the Java version of E:\jenkins/jdk/bin/java" I don't know why it's choosing that path as I have not specified a Java path.

Re: Java install for Windows agent?

2020-11-27 Thread David Aldrich
hey occur.* > > *COVID-19 : nous sommes fiers d’informer nos collaborateurs que Amotus > opèrent adéquatement et que l’impact sur notre productivité est minimisé. > Nous vous tiendrons au courant de tout changement.* > > > > *From:* jenkinsci-users@googlegroups.com > *On Be

Re: Java install for Windows agent?

2020-11-27 Thread David Aldrich
8) 800-1073 ext.:109 > > amotus.ca <http://www.amotus-solutions.com/> > statum-iot.com > > <https://www.facebook.com/LesSolutionsAmotus/> > <https://www.linkedin.com/company/amotus-solutions/> > <https://twitter.com/AmotusSolutions> > <https://www.you

High memory usage by Java process

2020-12-03 Thread David Aldrich
Hi I have a Centos 7 Jenkins agent. 'top' shows that Jenkins is running a Java process on it (as expected) but shows 22GB Virtual Memory allocated to that process. Seems very high, is that reasonable? Best regards David -- You received this message because you are subscribed to the Google Group

Re: High memory usage by Java process

2020-12-03 Thread David Aldrich
What would be a recommended setting? On Thu, Dec 3, 2020 at 12:41 PM 'Björn Pedersen' via Jenkins Users < jenkinsci-users@googlegroups.com> wrote: > Check the advanced settings for the agent at least ssh agents allow > custom JVM options there. > > Björn Pedersen schrieb am Donnerstag, 3. Dezemb

Fwd: How to fix 'invalid crumb' warnings?

2021-06-09 Thread David Aldrich
Hi In our Jenkins System Log we see many instances of messages like these: Jun 08, 2021 12:09:17 PM WARNING hudson.security.csrf.CrumbFilter doFilter Found invalid crumb 3554fd3884df49f975319b4852c6caef3f8f0f96da8e2bfbcc493abf78cdc9d3. If you are calling this URL with a script, please use the API

RE: Is the changelog "Community ratings" broken?

2015-02-10 Thread David Aldrich
> Is anyone else having this problem, or can you see the actual per-version > ratings? It's broken for me too (using IE11). -- 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

Areas of dashboard are inaccessible in Jenkins 1.599 from IE11

2015-02-25 Thread David Aldrich
Hi I am not raising this in Jenkins JIRA because I know that there are various existing issues for IE11 and the dashboard there. I thought I would ask here first. When using IE11 with 1.599, I see the names of running jobs extend from the 'Build Executor Status' column into the main area of th

Is Jenkins Updates site down?

2015-04-27 Thread David Aldrich
When connecting to: http://updates.jenkins-ci.org/stable/update-center.json I see: hudson.util.IOException2: Failed to download from http://updates.jenkins-ci.org/download/plugins/metrics/3.0.10/metrics.hpi at hudson.model.UpdateCenter$UpdateCenterConfiguration.download(UpdateCenter.ja

Problem downloading plugin updates

2015-05-07 Thread David Aldrich
Hi This morning I have successfully downloaded plugin updates for the Email-Ext and Jiunit plugins. But downloads for the Support core and Monitoring plugins fail: hudson.util.IOException2: Failed to download from http://updates.jenkins-ci.org/download/plugins/support-core/2.22/support-core.h

RE: Problem downloading plugin updates

2015-05-07 Thread David Aldrich
Problem is resolved. -- 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 htt

Requirement for Java 1.7?

2015-05-07 Thread David Aldrich
Hi I notice that the Jenkins release notes for 1.612 state: Jenkins now requires Java 7. I tried upgrading from Jenkins 1.607 to 1.612 and many of our Linux slaves failed to launch. Part of the reported error is: [05/07/15 14:34:23] [SSH] Checking java version of /data/hudsonuser/jdk/bin/java

RE: Requirement for Java 1.7?

2015-05-07 Thread David Aldrich
> yum install java-1.7.0-openjdk 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-users+unsubscr...@googlegroups.com. To view this discussion o

RE: Requirement for Java 1.7?

2015-05-07 Thread David Aldrich
I wonder if someone could remind me how Jenkins uses Java on a Linux slave. Our launch method is "Launch slave agents on Unix machines via SSH". The remote root directory is: /data/hudsonuser I can see that the Java location on the slave is: /data/hudsonuser/jdk/bin/java Does

RE: Requirement for Java 1.7?

2015-05-08 Thread David Aldrich
rs@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of Daniel Beck > Sent: 07 May 2015 18:44 > To: jenkinsci-users@googlegroups.com > Subject: Re: Requirement for Java 1.7? > > > On 07.05.2015, at 17:31, David Aldrich > wrote: > > > Does th

Change log unavailable

2015-05-19 Thread David Aldrich
http://jenkins-ci.org/changelog gives: 503 Service Unavailable 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..

RE: How Do I Tell Jenkins to Use Java 7 (already installed)

2015-05-21 Thread David Aldrich
If you check the connection log for the slave it should show you which Java path is being used by Jenkins. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of robert.st...@onyxpoint.com Sent: 21 May 2015 13:04 To: jenkinsci-users@googlegroups.com Subjec

How to run set of regression tests across multiple svn branches?

2015-05-29 Thread David Aldrich
Hi We develop an application that lives in a svn repository. New features are added in branches, which can be long-lived. I need to regularly run the same set of regression tests on each branch and the trunk. Currently, I create a new set of Jenkins jobs each time I create a new branch - one j

Log Parser plugin file location?

2015-06-19 Thread David Aldrich
Hi I have only just discovered the Log Parser plugin. The wiki page shows the parsing rules files living in /tmp. How do people here usually manage their parsing rule files? Is it possible to store them in a scm such as Subversion? Can they be taken from the active workspace? Best regards D

RE: Version Issues on Website

2015-07-21 Thread David Aldrich
Just to mention that it seems that 1.621 is still not available despite being advertised. > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of Daniel Beck > Sent: 20 July 2015 13:18 > To: jenkinsci-users@googlegroups.com >

RE: Version Issues on Website

2015-07-22 Thread David Aldrich
Sorry to go on about this, but 1.621 is still advertised but not available. > -Original Message- > From: jenkinsci-users@googlegroups.com [mailto:jenkinsci- > us...@googlegroups.com] On Behalf Of David Aldrich > Sent: 21 July 2015 09:00 > To: jenkinsci-users@googlegroups.co

<    1   2   3   4