Re: How I can change the default directory which Jenkins will use to load plugins?

2022-10-13 Thread Richard Bywater
Have you read the Preinstalling plugins section on the Docker image documentation? https://github.com/jenkinsci/docker/blob/master/README.md#preinstalling-plugins Richard. On Fri, 14 Oct 2022 at 08:17, Vladimir wrote: > I have a server which periodically I want to update. I've moved >

Re: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

2021-05-31 Thread Richard Bywater
Which version of Openshift are you using? AFAIK Openshift 4 doesn't support use of the Docker socket anymore (or at least not by default) Richard. On Sat, 29 May 2021 at 05:36, anilkumar panditi wrote: > Hi, > sorry for asking repeated question, > Earlier i had worked on a Jenkins instance

Re: Kubernetes plugin

2021-03-22 Thread Richard Bywater
gt; > On Mon, Mar 22, 2021 at 9:28 AM Richard Bywater > wrote: > >> Hi >> >> I was just looking at JENKINS-64778 >> <https://issues.jenkins.io/browse/JENKINS-64778> which regarded a >> request in the Kubernetes plugin and noted one of the comments

Kubernetes plugin

2021-03-22 Thread Richard Bywater
Hi I was just looking at JENKINS-64778 which regarded a request in the Kubernetes plugin and noted one of the comments was "we are no longer actively maintaining this plugin" Just wondering about whether this is because there is another plugin

Re: JDK8 or JDK11 to be used for Jenkins ?

2020-12-11 Thread Richard Bywater
Personally if you are starting from a new Jenkins version then I'd go JDK11 unless you hit some strange edge-case issue where you might need to roll it back to JDK8. Although JDK8 isn't going anywhere in the short term its probably best to keep with the newest LTS version of Java to not make the

Re: Login Problems with issues.jenkins-ci.org - who to contact?

2020-12-02 Thread Richard Bywater
I suspect that the Jira sign-up link should actually probably be disabled as if I'm not mistaken accounts need to be created via the accounts or beta.accounts URL. Hopefully someone who knows more about the new Jira setup can confirm or deny that :) Richard. On Thu, 3 Dec 2020 at 06:24, Inga

Re: Azure pull request plugin?

2020-11-19 Thread Richard Bywater
Azure DevOps is pretty new compared to the other options and so it's probably a case of that it's not been well enough used for someone to consider writing a plugin to support it. These plugins are generally written for and by the community and so it requires someone to put up their hand to write

Re: where do I have to set the sonar-project.properties file to make sonar work in Jenkins?

2020-11-12 Thread Richard Bywater
I think you've been chasing the wrong issue. The lack of a project root configuration file is normal if everything is configured elsewhere. As far as I can tell you are having issues with no code coverage? >00:10:46.807 INFO: Sensor JaCoCo XML Report Importer [jacoco] >00:10:46.807 INFO:

Re: How to access jenkins using ip address remotely ?

2020-10-21 Thread Richard Bywater
As well as the above, if you are wanting to access Jenkins on your Mac outside of the machine itself you'll also need to ensure the Mac Firewall is open to allow port 8080 traffic. Richard. On Wed, 21 Oct 2020 at 08:37, Ivan Fernandez Calvo wrote: > Do you use something like this to run

Re: Unable to list Warnings Next Generation plugin

2020-09-19 Thread Richard Bywater
Have you checked the Installed plugins section to see if they are already installed? If they are already installed (which they might be as a dependency on another plugin you have previously installed) then they won't show in Available plugins. Richard. On Sun, 20 Sep 2020 at 16:41, Praveen Kumar

Re: Unable to Update Jenkins and Plugin

2020-09-01 Thread Richard Bywater
Are you running in a corporate environment that uses a proxy to talk to the Internet? If so then you'll need to ensure that the certificate used by the proxy (assuming it intercepts TLS traffic) is loaded in the "cacerts" file for the given version of Java. Unfortunately I'm not sure where that

Re: K8s jenkins dynamic agent fails & shows - tcpSlaveAgentListener error

2020-08-29 Thread Richard Bywater
What is the K8s-Worker node that you are referring to? You didn't mention that in the first email so I'm not sure where that fits in. Also which entries did you actually put into the /etc/hosts file as you don't say what it looked like before. I'm fairly new to K8s myself but my main question

Re: HTML Publisher pipeline syntax

2020-08-24 Thread Richard Bywater
Looks like the issue is with your reportDir. In your case I think you'd want this set to simply "coverage-results" assuming there is a index.html in that directory. If the index.html only exists in the subdirectories of coverage-results (which I think might be the case?) then reportFiles should be

Re: Where is source for the "withSonarQubeEnv" and "waitForQualityGate" pipeline steps?

2020-08-12 Thread Richard Bywater
: > Thanks. That's not giving me an obvious answer to my problem. I guess I'll > have to post more details in a separate question. > > On Wednesday, August 12, 2020 at 5:13:50 PM UTC-7, Richard Bywater wrote: >> >> >> https://github.com/jenkinsci/sonarqube-plugin

Re: Where is source for the "withSonarQubeEnv" and "waitForQualityGate" pipeline steps?

2020-08-12 Thread Richard Bywater
https://github.com/jenkinsci/sonarqube-plugin/blob/master/src/main/java/org/sonarsource/scanner/jenkins/pipeline/WaitForQualityGateStep.java is probably what you are looking for. Richard. On Thu, 13 Aug 2020 at 11:27, David Karr wrote: > I'm trying to troubleshoot a problem with our

Re: Help needed with setting up credentials for Bitbucket-branch-source-plugin

2020-07-24 Thread Richard Bywater
For use with a multibranch type job you'll need username & password/token credentials for a Bitbucket user which has read access to the repo (or admin access if you want Jenkins to setup the hooks automatically). For use with an organisation folder type job (with Bitbucket server at least -

Re: how to login to jenkins with third party sso from python scripts

2020-06-23 Thread Richard Bywater
https://www.jenkins.io/doc/book/system-administration/authenticating-scripted-clients/ will hopefully get you started. Richard. On Wed, 24 Jun 2020 at 16:53, Lokeshwaran wrote: > Where do we get this API token from > > On Wednesday, June 17, 2015 at 12:50:28 PM UTC+5:30, Sushant Gupta wrote:

Re: Artifactory Plugin creates invalid packages?

2020-04-22 Thread Richard Bywater
Please don't double post questions. If/when someone can help you then they will. Note that I believe the Artifactory plugin is developed by JFrog themselves and so you may be able to get support from them directly unless you are using the OSS version of Artifactory. Richard. On Wed, 22 Apr 2020

Re: Jenkins HTML publishing on build level without copies

2020-04-01 Thread Richard Bywater
Yes there is - use "includes" parameter which is an Ant compatible pattern that specifies what files in the report directory to archive. It defaults to archiving all files in the given report directory. Richard. On Thu, 2 Apr 2020 at 08:41, Filip Kosik wrote: > Thanks Gianluca for your

Re: Security concern for Gitlab webhook token to Jenkins

2020-03-19 Thread Richard Bywater
I haven't tried it so I don't know if it works, but have you tried passing the Authorization header in the request rather than setting username & password as part of the URL? e.g. `Authorization:Basic username:apiToken` where the whole `username:apiToken` is base-64 encoded Richard. On Thu, 19

Re: Shell script not working as expected in jenkins

2020-02-11 Thread Richard Bywater
Without seeing some kinds of logs to understand what the script is doing and what output is wrong then there could be many things wrong. One thing to note is that MacOS Terminal is not Linux - there are a number of tools that are different as MacOS is BSD based. "sed" is one of those and so the

Re: (Trivial) Startup Message Awkwardness

2019-12-31 Thread Richard Bywater
>From my native (New Zealand) English speaking perspective the way its worded currently seems to sound right and the alternate (gets) version seems not quite right - the wonders of English :) Personally, using https://conjugator.reverso.net/conjugation-english-verb-get.html and

Re: Publish over SSH plugin not transferring any files

2019-12-24 Thread Richard Bywater
Looks to me like the Ansible playbook is running on the remote server but there's nothing actually copying the files to the remote server so the playbook doesn't have anything to copy. However I've only have taken a quick peek so apologies if I've misread the situation. Richard. On Wed, 25 Dec

Re: bitbucket-branch-source-plugin disable trigger once at day

2019-10-04 Thread Richard Bywater
Does unticking the option not work? If it doesn't then I'd consider raising an issue against the plugin to track as that doesn't sound right. Richard. On Sat, 5 Oct 2019, 3:25 AM Andrey Kislyak, wrote: > Hi All > > I have installed and configured bitbucket-branch-source-plugin v.2.4.0 on >

Re: Gradle Tool Failed Download

2019-08-07 Thread Richard Bywater
Personally with Gradle I've always found it easier to use Gradle Wrapper instead of full installs. Don't know if that's an option for you or not. Richard. On Thu, 8 Aug 2019, 7:38 AM Sverre Moe, wrote: > Got it working using the "Run Shell Command". Though I find it very > cumbersome. > >

Re: no files matching the pattern C:\MyApp\bin\project.dll ERROR: no files matching the pattern C:\MyApp\bin\project.dll

2019-06-11 Thread Richard Bywater
Pure guess without looking at the plugin code or ever having used the plugin but I'm guessing Test Files need to be specified as a relative path within the workspace rather than an arbitrary file somewhere else on the disk. Richard. On Tue, 11 Jun 2019 at 05:13, Nef Rey wrote: > I'm using a

Re: jenkins user cpu is high and will jenkins create .firefoxcatche directory

2019-06-03 Thread Richard Bywater
In fact https://msandbu.org/real-life-detection-of-a-virtual-machine-in-azure-with-security-center/ sounds very similar to your issue. On Mon, 3 Jun 2019 at 22:13, Richard Bywater wrote: > A quick Google search of the directory name ".firefoxcatche" appears to > point at possib

Re: jenkins user cpu is high and will jenkins create .firefoxcatche directory

2019-06-03 Thread Richard Bywater
A quick Google search of the directory name ".firefoxcatche" appears to point at possible crypto-mining malware which would go along with the high CPU usage I'm guessing. I'd get your machine checked. Richard. On Tue, 21 May 2019 at 18:12, Turaco mobile wrote: > Hi, Jenkins is running in

Re: Jenkins Plugin cannot get called from the pipeline with new syntax

2019-02-25 Thread Richard Bywater
t formData) throws > FormException { > save(); > return super.configure(req, formData); > } > } > > I think I am missing out on something. > > > On Sunday, February 24, 2019 at 12:19:56 PM UTC+5:30, Richard Bywater > wrote: >> >> You need to

Re: Jenkins Plugin cannot get called from the pipeline with new syntax

2019-02-23 Thread Richard Bywater
You need to define a Symbol in your plugin. See Defining Symbols section at https://jenkins.io/doc/developer/plugin-development/pipeline-integration/ Richard On Sat, 23 Feb 2019, 11:25 AM prasad.pofali via Jenkins Users, < jenkinsci-users@googlegroups.com> wrote: > I have developed a custom

Re: Jenkins pushing to a Nuget hosted repository (Nexus)

2019-02-23 Thread Richard Bywater
I have never used Nuget but looks like Nuget isn't installed or isn't present on the path of the user that Jenkins is running as? Also usually plugins will expose their own "methods" so would think you'd be using one of those rather than using a sh step. Richard On Sun, 24 Feb 2019, 1:40 AM

Re: Configure BitBucket to build upon commit on Jenkins

2019-02-21 Thread Richard Bywater
Have you followed the instructions available at https://support.cloudbees.com/hc/en-us/articles/11553051-How-to-Trigger-Multibranch-Jobs-from-Bitbucket-Server- ? I haven't configured it in a while but these steps are what I last used. Also of particular note is that, as far as I know, you

Re: Does Bitbucket Source Branch plugin support "SSH username with private key" type credentials?

2019-02-14 Thread Richard Bywater
Have you added the "Checkout over SSH" behaviour? Richard. On Fri, Feb 15, 2019 at 3:20 PM Cameron Morrison wrote: > Hi, > > I am using the bitbucket-source-branch plugin - it's working, but I cannot > figure out how to provide "SSH & private key" type credentials to the > branch source, when

Re: Get Ansible "PLAY RECAP" Failed value from Jenkins pipeline

2019-02-05 Thread Richard Bywater
The Log Parser plugin might be useful for your use case although a disclaimer that I don't use it myself so can't vouch for it. https://wiki.jenkins.io/plugins/servlet/mobile?contentId=43713289#content/view/43713289 Richard. On Wed, 6 Feb 2019, 2:51 AM Manoranjan Panigrahi, <

Re: How to include other files using (pipeline utility plugin) in jenkins pipeline

2019-01-29 Thread Richard Bywater
Based on my reading of what you have put, it looks like you'd end up with a zip file called "bin.zip**/some/other/path/bin.zipREADME.md" - is that definitely what you have in your pipeline? Richard. On Wed, Jan 30, 2019 at 7:59 PM Faad Sayaou wrote: > Hello, > I am using the pipeline utility

Re: Users unable to build projects they're authorized for via role-strategy-plugin

2019-01-18 Thread Richard Bywater
I've had this issue in the part. In my experience there isn't really much that you can do about it except to try and get people to use a particular case when logging in (e.g. all lower case). If there's an alternative option that can be chosen would love to hear about it though. Richard. On

Re: How can I find the plugin name to use with install-plugins.sh?

2018-09-14 Thread Richard Bywater
Note that you can also find the ID of a plugin on the plugins.jenkins.io page for that plugin (e.g. https://plugins.jenkins.io/docker-workflow) - its ID is shown just below the plugin name header. Richard. On Fri, Sep 14, 2018 at 12:00 AM Thomas Sundberg wrote: > Hi! > > This is partly

Re: Jenkins 2.89.3 “This Jenkins instance appears to be offline”

2018-02-11 Thread Richard Bywater
Are you behind a man-in-the-middle proxy? If so you'll need to load the correct CA certificate into the .../jre/lib/security/cacerts file by the look of that exception. Richard. On Mon, 12 Feb 2018, 1:52 AM David Tran, wrote: > I have this problem that I can't seem to

Re: Linting Jenkinsfile

2018-01-16 Thread Richard Bywater
; Mayur > > > On Tuesday, January 16, 2018 at 2:08:22 PM UTC+5:30, Richard Bywater wrote: > >> Hi Mayur >> >> You need to connect to Jenkins' SSH port and not the system port number. >> See https://wiki.jenkins.io/display/JENKINS/Jenkins+SSH for more info. >> &

Re: Linting Jenkinsfile

2018-01-16 Thread Richard Bywater
Hi Mayur You need to connect to Jenkins' SSH port and not the system port number. See https://wiki.jenkins.io/display/JENKINS/Jenkins+SSH for more info. Richard. On Tue, 16 Jan 2018 at 21:25 Mayur Nagekar wrote: > ssh -i ~/.ssh/id_rsa_jenkins -p 22 declarative-linter

Re: installed jenkins in Linux but not able to connect through browser

2017-12-25 Thread Richard Bywater
Agree with Mark - further to his info you'll also want to check the firewall settings to make sure the relevant port is open. Richard. On Tue, 26 Dec 2017, 3:28 AM Mark Waite, wrote: > You'll need to provide more detail about what you have discovered as > you've

Re: github enterprise self signed certs

2017-11-04 Thread Richard Bywater
Just to throw my 2 cents in, I guess it depends on what is meant by self-signed - is that self-signed as in I've created a cert on my machine and that's what I'm using, or is it "self-signed" in that its signed by a CA that is internal to the organisation. The former seems a bit of a strange case

Re: withAWS step complains about not being able to support closures in the script console

2017-10-13 Thread Richard Bywater
What does your pipeline look like? Are you sure you aren't calling publish instead of publishToS3 (as the step name seems to be the only reference to "publish" in the snippet you provided. Richard On Sat, 14 Oct 2017, 4:45 AM Kevin Milner, wrote: > I'm having a TON

Re: unable to post ssh credentials via API

2017-10-11 Thread Richard Bywater
Personally for that task I've used the CLI functionality to run a Groovy script to setup credentials. Don't know if that's an option for you or not. Richard. On Wed, 11 Oct 2017, 8:51 PM 'Jurgen Weber' via Jenkins Users, < jenkinsci-users@googlegroups.com> wrote: > Hi Team > > I am trying

Re: Bitbucket Branch Source Plugin & Endpoints

2017-10-05 Thread Richard Bywater
/cloudbees/jenkins/plugins/bitbucket/BitbucketHgSCMBuilder.java#L170-L181 > > You'll probably get a faster fix if you can provide a PR for the issue as > my attention is assigned elsewhere at present > > On 5 October 2017 at 01:52, Richard Bywater <rich...@byh2o.com> wrote: > >> Will do!

Re: Bitbucket Branch Source Plugin & Endpoints

2017-10-05 Thread Richard Bywater
Will do! Thanks Richard. On Thu, 5 Oct 2017 at 21:20 Stephen Connolly < stephen.alan.conno...@gmail.com> wrote: > Oversight. Please file a ticket in JIRA > > On 4 October 2017 at 20:46, Richard Bywater <rich...@byh2o.com> wrote: > >> Hi >> >> One of m

Bitbucket Branch Source Plugin & Endpoints

2017-10-04 Thread Richard Bywater
Hi One of my colleagues is trying to get Jenkins 2 up and running with the Bitbucket Branch Source plugin using our Bitbucket Server infrastructure. We've run into an issue with the plugin as it appears it expects the server URL defined in the Bitbucket endpoint configuration to be the same as

Re: One github repo, two pipelines, two distinct checks in github?

2017-09-15 Thread Richard Bywater
With regards to 1, the credentials and credential binding plugins would probably help out there as you wouldn't have to embed the token in the script. Can't comment on the other issues though. Richard On Sat, 16 Sep 2017, 3:01 AM 'Ian Smith' via Jenkins Users < jenkinsci-users@googlegroups.com>

Re: How to publishHTML via Shared Library global variable steps?

2017-09-09 Thread Richard Bywater
No worries. Glad you got it up and running. I too able sometimes guilty of making things too difficult so I know the feeling :) Richard On Sun, 10 Sep 2017, 3:38 AM Ann B wrote: > Nice!! That was it Richard! > > Sorry that did not occur to me. I was making it way more

Re: How to publishHTML via Shared Library global variable steps?

2017-09-09 Thread Richard Bywater
Based on the links that you provided, I've now tried the following both of which seem to work so hopefully you might be able to extract the relevant bits out and apply to your codebase (note that I'm by far any expert on pipelines - just learning them myself really!) Attempt 1 - using a custom

Re: How to publishHTML via Shared Library global variable steps?

2017-09-08 Thread Richard Bywater
Hi Ann I'm the current maintainer of the HTML Publisher plugin but unfortunately I'm not 100% up-to-speed with its use with pipeline etc. I couldn't replicate the syntax error you had so I'm wondering if that is actually being caused by a syntax error somewhere else and its reporting it

Re: How to publishHTML via Shared Library global variable steps?

2017-09-08 Thread Richard Bywater
Are there any errors displayed or does it just ignore the line? Would be good to get a sense roughly where the issue might be originating. Richard. On Fri, 8 Sep 2017 at 03:40 Ann B wrote: > Hi Steffen- > > publishHTML step also works fine for me from a pipeline script. The

Re: curl upload with filename in variable

2017-08-10 Thread Richard Bywater
Taking a look at the error, it appears like you have a line feed or carriage return at the end of the env.filename variable (note the quote is on the next line and not next to apk like I'd expect). Richard. On Thu, 10 Aug 2017 at 09:40 Curtis Kline wrote: > The file

Re: Jenkins Pipeline Docker Permissions

2017-07-10 Thread Richard Bywater
semblance of control over how jenkins > pipeline accesses/calls docker but this will do for now. Thanks for > pointing me back in the docker group direction. > > On Friday, July 7, 2017 at 3:10:12 PM UTC-7, Richard Bywater wrote: > >> I haven't checked for a while but it used to be that i

Re: Jenkins Pipeline Docker Permissions

2017-07-07 Thread Richard Bywater
I haven't checked for a while but it used to be that if you add a user to the "docker" group they'll be able to access docker commands. Richard On Sat, 8 Jul 2017, 9:27 AM Dan Kinon wrote: > Hello, >I'm running jenkins as a non-root user and am attempting to use a >

Re: run jar in jenkins job

2017-07-04 Thread Richard Bywater
What does 'demo.jar' actually do? It looks like you've got a build timeout plugin installed which times the build out after 5 minutes which seems to imply that the execution of the JAR hasn't returned in that time period. Richard. On Tue, 4 Jul 2017 at 23:04 Sumitha Arjunan

Re: Use of Execute Windows batch command step to trigger google chrome(or in general any app that can be triggered from command prompt)

2017-06-29 Thread Richard Bywater
Running Chrome will return control to the batch script straight away and, without anything else to run, the script will exit. You'll need to look at a way of waiting for Chrome to finish (although its not clear what it is trying to do from the example). Richard. On Thu, 29 Jun 2017 at 00:32 Zed

Re: What is the difference between my shell and Jenkins regarding batch command

2017-06-28 Thread Richard Bywater
To be able to provide assistance about possible causes you really need to provide more info - for instance, what the Java exception is that you are getting. Otherwise any help would be merely guessing to possible causes. Richard. On Wed, 28 Jun 2017 at 20:34 Nicolas Lignée

Re: Integration of sonar qube with jenkins

2017-06-11 Thread Richard Bywater
See the documentation at https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Jenkins Richard On Sun, 11 Jun 2017 at 04:01 Sivakrishna Yarra < sivakrishna.ya...@ramyamlab.com> wrote: > Hi Guys, > I am using Jenkins as CI and CD. I just want to integrate sonar-qube with

Re: plugins supported by jenkins 2.0

2017-05-10 Thread Richard Bywater
Just to check, are you asking about which are supported by Jenkins 2.0 or which are supported by Pipelines? Stephen has already answered about the former but in terms of the latter, this page ( https://github.com/jenkinsci/pipeline-plugin/blob/master/COMPATIBILITY.md ) tracks the status. Richard.

Re: Regarding the recent waves of mailing list spam

2017-05-03 Thread Richard Bywater
I'm assuming that not all of us have been added in to help the effort as I can't personally see any management functions... Richard. On Tue, 2 May 2017 at 08:50 Arnaud Héritier wrote: > Did you add all of us as moderators Tyler ? > > On Sun, Apr 30, 2017 at 1:44 PM, Mark

Re: Jenkins 2.7 vs 2.4

2017-04-18 Thread Richard Bywater
Not quite sure where you are seeing that date against 2.4. The results from my view of that list is: jenkins-2.4-1.1.noarch.rpm 2016/05/15 65.4M jenkins-2.7-1.1.noarch.rpm 2016/05/29 65.4M So 2.7 is newer than 2.4. I believe you'll find that Blue Ocean is 2.7+ so you should probably grab the

Re: Jenkins Mirror is down

2017-04-18 Thread Richard Bywater
Are you sure it's the mirror? That looks like a virus scan error which would usually be more placed on the consumer side than the mirror - that is, does your current internet connection virus check? Cheers Richard On Tue, 18 Apr 2017, 6:59 PM Devon wrote: > Hi there >

Re: Confluence Source Editor

2017-04-04 Thread Richard Bywater
I believe Daniel suggested you post this on the Infra mailing list? This isn't that list :) See https://jenkins.io/mailing-lists/#a-href-mailto-infra-lists-jenkins-ci-org-infra-lists-jenkins-ci-org-a Richard. On Wed, 5 Apr 2017 at 07:49 JordanGS wrote: > Is there

Re: Error in build Grails

2017-03-29 Thread Richard Bywater
Does this work locally as it kind of looks like not a Jenkins issue but a Grails one. Looks like a problem when processing the style.css file - I'm assuming if you run with --stacktrace like it says you'll find out more. Richard. On Thu, 30 Mar 2017 at 12:53 Роман Ловаков

Re: The option to “Launch slave agents via Java Web Start” is missing from new node configuration

2016-08-14 Thread Richard Bywater
Perhaps it would be an idea to show the item but as disabled and state what actions are required to get it enabled? Richard. On Mon, 15 Aug 2016 at 12:15 Stephen Connolly < stephen.alan.conno...@gmail.com> wrote: > So the logic here is to reflect that the TCP agent port has been disabled > and

Re: Configure Publish Over SSH server if password changed overtime

2016-06-12 Thread Richard Bywater
Are you not able to move to key based Auth? Richard On Mon, 13 Jun 2016, 2:05 PM Reinaldo Chandra wrote: > Hi, > Currently I'm using password authentication for connecting to the server. > However, my company policy forces the password to be newly generated upon >

Re: Pipeline Multi-branch different options based on branch

2016-05-12 Thread Richard Bywater
Haven't done it myself but there is the different Property Strategy in the multibranch config of "Named branches get different properties" - so presumably you could set (or unset) a property for certain branches and drive the decision to deploy off of that? Richard. On Fri, 13 May 2016 at 11:24

Re: Jenkins 2.0 and the game of life

2016-05-01 Thread Richard Bywater
What error is received when NOT using the -o flag? Richard. On Mon, 2 May 2016 at 12:02 Sarah Baker wrote: > Yes, I've tried both with and without the -o exactly as it indicates in > the book. > Entered with javadoc:javadoc -o the error is > ... > > [INFO] *---

Re: StashNotifier Plugin - version info

2016-04-18 Thread Richard Bywater
Working for me on Chrome Mac. Richard. On Tue, 19 Apr 2016 at 08:57 Ashish Yadav wrote: > This page is coming up ‘blank' for me. > https://wiki.jenkins-ci.org/display/JENKINS/StashNotifier+Plugin > > I am not able to view any version history. Did the page get moved? >

Re: How do I retrieve the exit code of a 'bat' command?

2016-04-14 Thread Richard Bywater
On Thu, Apr 14, 2016 at 10:25 PM, Richard Bywater <rich...@byh2o.com> > wrote: > >> Someone may have a more elegant answer but one way that comes to mind is >> to call another cmd/bat file from Jenkins which then calls the external >> tools and also has logic to interpret

Re: How do I retrieve the exit code of a 'bat' command?

2016-04-14 Thread Richard Bywater
Someone may have a more elegant answer but one way that comes to mind is to call another cmd/bat file from Jenkins which then calls the external tools and also has logic to interpret the exit codes coming back from the those tools and acting appropriately. Richard. On Fri, 15 Apr 2016 at 09:07

Re: How can I write job script and load it to jenkins to work ?

2016-04-13 Thread Richard Bywater
There's also Jenkins Job Builder - http://docs.openstack.org/infra/jenkins-job-builder/ - which isn't a plugin to Jenkins but creates and uploads Jenkins config.xml based off of YAML. Richard. On Thu, 14 Apr 2016 at 13:59 Slide wrote: > There are two options that you

Re: Jenkins 2.0: Turn off Setup wizard

2016-03-31 Thread Richard Bywater
It sounds to me like there's a good use-case for being able to skip the setup wizard even in "prod" mode? Is the jenkins.install.runSetupWizard ignored if development = false? If so would it make sense just to skip that check? Richard. On Fri, 1 Apr 2016 at 10:10 Baptiste Mathus

Re: textbox in jellyscript

2016-03-14 Thread Richard Bywater
You might have more luck on the dev list Richard. On Tue, 15 Mar 2016 6:37 pm Irfan Sayed wrote: > please suggest > > On Mon, Mar 14, 2016 at 11:10 PM, Irfan Sayed > wrote: > >> Hello All, >> >> is there any way in jelly script to have a textbox and

Re: Any tutorials to setup Jenkins Pipeline CI/CD

2016-03-07 Thread Richard Bywater
https://github.com/jenkinsci/workflow-plugin/blob/master/TUTORIAL.md ? Richard. On Tue, 8 Mar 2016 at 19:38 Kaushal Shriyan wrote: > Hi, > > Are there any tutorials to setup Jenkins Pipeline CI/CD on Linux? For > example git scm -> jenkins -> maven build tool ->

Re: restart a nodejs app

2015-12-16 Thread Richard Bywater
I'm interested in why you would use Jenkins when cron would seem to be a better fit? Aside from that, you haven't said what OS/distro you are dealing with but assuming that ovrc-dashboard-api follows the standard pattern then using cron to run a shell script something like "service

Re: which logo do you like best?

2015-12-14 Thread Richard Bywater
Personally I like #6 the best. On Tue, 15 Dec 2015 at 08:17 Alyssa Tong wrote: > Hello, > > Planning is underway for Jenkins World 2016 in Santa Clara, CA. This will > be a three days Jenkins conference for 2016. I wanted to solicit feedback > for the new Jenkins World

Re: GMail SMTP (aws: Re: How to Run Selenium Script With Jenkins through Git)

2015-12-03 Thread Richard Bywater
On Friday, December 4, 2015 at 1:49:06 AM UTC+5:30, Richard Bywater wrote: > >> Do you have 2-step authentication turned on? If so, as per the linked >> support page, you'll need to create an app password specific to Jenkins. >> >> Richard. >> >> On Fri, 4 D

Re: GMail SMTP (aws: Re: How to Run Selenium Script With Jenkins through Git)

2015-12-03 Thread Richard Bywater
Do you have 2-step authentication turned on? If so, as per the linked support page, you'll need to create an app password specific to Jenkins. Richard. On Fri, 4 Dec 2015 at 02:24 dhrumil shah wrote: > Hello Dirk, > > I have already done with that. but still got

Re: Jenkins ignoring No Host proxy setting

2015-11-16 Thread Richard Bywater
Do I need to configure anything else if so please let me know > > thanks > > > > On Monday, November 16, 2015 at 1:28:35 PM UTC-6, Richard Bywater wrote: > >> To confirm, how & where did you specify the no host proxy setting? >> >> Richard >> >&

Re: Jenkins ignoring No Host proxy setting

2015-11-16 Thread Richard Bywater
To confirm, how & where did you specify the no host proxy setting? Richard On Tue, 17 Nov 2015 7:48 am Yout Me wrote: > Hi, > Issue: Jenkins is going through the proxy even though I setup the No Host > proxy. > Jenkins version 1.554.3 , > JDk 6 > To integrage Jenkins with

Re: Can we install SonarQube and Jenkins on same machine(VM) ?

2015-10-19 Thread Richard Bywater
You can install as much as you want on the same machine but the main issue is going to be if you have enough memory and cpu to serve both apps properly. Richard. On Tue, 20 Oct 2015 12:03 am Ramesh Udari wrote: > Hi, > > We have SonarQube server which running on

Re: docker connectivity issue

2015-10-18 Thread Richard Bywater
22/v1.19/images/json: malformed HTTP >>>> response "SSH-2.0-OpenSSH_6.4". Are you trying to connect to a TLS-enabled >>>> daemon without TLS? >>>> >>>> regards >>>> >>>> >>>> >>>> >>>

Re: docker connectivity issue

2015-10-18 Thread Richard Bywater
Have you specified the port 22 from that Docker URL or are the plug-ins doing that as port 22 isn't right for Docker. Richard On Sun, 18 Oct 2015 11:22 pm Irfan Sayed wrote: > > hi all, > > I am trying to provision the build containers dynamically using docker . i > have

Re: Distribution Groups from Outlook

2015-10-12 Thread Richard Bywater
The plugin just sends emails via normal SMTP based mail protocols so if the distribution group has an "internet" email address (e.g. yourgr...@yourcompany.com) then there's no reason for it not to work as long as the distribution group is allowed to receive emails from the "outside". Richard. On

Re: Jenkins HTTP frontend not acceccable, jenkins/java service needs most CPU/RAM capacity on jenkins service

2015-09-28 Thread Richard Bywater
Argh - sorry folks. Looks like Inbox decided to requote the entire blob of stuff again :/ Richard. -- 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

Re: Connecting to irc freenode from jenkins

2015-09-10 Thread Richard Bywater
Seems to me you are trying to connect to the server that hosts the web version of the Freenode IRC. You should be using one of the servers listed on https://freenode.net/irc_servers.shtml But I must ask, why are you trying to get your Jenkins to talk to the Jenkins channel on IRC?? Richard. On

Re: 3rd party packages version control

2015-08-31 Thread Richard Bywater
You might want to provide more details like what language and build system you are using otherwise it's quite hard to help. Richard On Tue, 1 Sep 2015 12:39 am Amit Bhardwaj wrote: > Hello Group !! > > I am in process of evaluation and implementing Jenkins and so far

Re: move jenkins enterprise license to another VM

2015-08-26 Thread Richard Bywater
Hi This question is best put directly to CloudBees support. This list is for discussion about the Open Source representation of Jenkins. Richard. On Thu, 27 Aug 2015 5:15 pm Binoj MN binoj...@gmail.com wrote: What is the procedure to move the enterprise license from one VM to another VM?

Re: Remote Build Using Curl

2015-08-21 Thread Richard Bywater
Or given that assuming you really want to use curl, presumably you could reference the code base of those projects to try and see how to do it :) Richard. On Sat, 22 Aug 2015 6:33 am Khai Do zaro0...@gmail.com wrote: If you don't mind using Python, both the python-jenkins and jenkinsapi

Re: Automated installers testing

2015-08-19 Thread Richard Bywater
Basically if you can code / script it then Jenkins can do it. I'd start by getting a scripted thing up and running and then you can have Jenkins call that script when things change etc. Richard. On Wed, 19 Aug 2015 8:43 pm 'Pulkit Lall' via Jenkins Users jenkinsci-users@googlegroups.com wrote:

Re: Grails Jenkins CI not working

2015-08-19 Thread Richard Bywater
The other alternative is to use the legacy version of the directory (e.g. C:\Progra~1\...) I think you'll find it by doing a dir /x c:\ on the commant prompt. Richard. On Thu, 20 Aug 2015 at 15:35 Sanjay Lama sanjay.lama2...@gmail.com wrote: Hello there!! I put quotes in work dir. But, now

Re: Jenkins On Virtual Machine problem

2015-08-17 Thread Richard Bywater
So the tests run slow when you don't run with Jenkins too? If they do you might be best asking on a webdriver related forum. Richard. On Mon, 17 Aug 2015 6:25 pm Lilach Arviv lilach...@gmail.com wrote: Hello, we have 3 physical machines in our company and Server machine. when we run 50

Re: Upgrade Jenkins

2015-07-23 Thread Richard Bywater
You'll need to provide a bit more detail about your Jenkins setup for someone to help. (For instance are you running via a WAR install or via a OS package install) Richard. On Thu, 23 Jul 2015 at 22:16 Sara Walawage saraa...@gmail.com wrote: How to upgrade the existing jenkins to latest

Re: Running build does not provision docker salve

2015-07-19 Thread Richard Bywater
, 2015 at 12:40:52 AM UTC+2, Richard Bywater wrote: You'll need to restrict the job to the label you gave in the Image configuration section (mylabel in your case) I haven't used the Docker Container option but I think that is for when you want to save the container for future use after the job

Re: How to make jenkins job wait until schedule task completes

2015-07-18 Thread Richard Bywater
Can you not just execute the job that is run via the scheduler directly from Jenkins? Richard. On Wed, 8 Jul 2015 at 05:41 latha@gmail.com wrote: Hello all, I am launching a schedule task in windows server 2008 through* schtask* command in Jenkins job. What is happening is , the job

Re: Running build does not provision docker salve

2015-07-18 Thread Richard Bywater
You'll need to restrict the job to the label you gave in the Image configuration section (mylabel in your case) I haven't used the Docker Container option but I think that is for when you want to save the container for future use after the job run is complete. Richard. On Sun, 19 Jul 2015 at

Re: Publish to FTP not uploading

2015-07-11 Thread Richard Bywater
Are you using an absolute or relative directory? Absolute directories aren't allowed so if you are using one try changing to relative. Richard. On Sun, 12 Jul 2015 3:36 am Ditto Slash dittosl...@gmail.com wrote: I'm using the Publish to FTP plugin. I'm trying to upload

Re: Jenkins Upgrade/Install in OSx/Mac Yoshomite

2015-07-07 Thread Richard Bywater
Not sure where you've seen 2.2.0 as that isn't a Jenkins version number. IMHO easiest way to manage Jenkins on MacOS is to install via homebrew but others might have other better ways. Richard. On Wed, 8 Jul 2015 at 11:31 jairaj kamal jairaj.ka...@gmail.com wrote: Hi, I have current Jenkins

  1   2   3   4   >