Re: Jenkins Upgrade

2020-03-12 Thread Mark Waite
tps://issues.jenkins-ci.org/issues/?jql=text%20~%20%22J9%22%20%20and%20status%20%3D%20Open> related to J9. Probably best to confirm that the same problem occurs with AdoptOpenJDK or with OpenJDK. Mark Waite On Wednesday, March 11, 2020 at 3:03:40 PM UTC-6, Madhu Muchukota wrote: > > Hi

Re: SharedLibrary doesn´t allow git parameter to fetch all branches

2020-03-03 Thread Mark Waite
If you need to clone two repositories and can't get the branch names from a git parameter, you could use a string parameter and list the choice of branches yourself. Or, you could experiment with the git parameter plugin to see if you can find a way to resolve the issue that you're seeing. On Tue

Re: Jenkinsfile SCM Checkout stage, how to match remote pull request head with local build head

2020-02-25 Thread Mark Waite
plugin is known to perform two fetch operations for each checkout. It has been reported as https://issues.jenkins-ci.org/browse/JENKINS-49757 and as https://issues.jenkins-ci.org/browse/JENKINS-56404 . There is a Google Summer of Code project idea that proposes to fix that by reducing it so

Re: Jenkinsfile SCM Checkout stage, how to match remote pull request head with local build head

2020-02-25 Thread Mark Waite
On Monday, February 24, 2020 at 8:17:07 PM UTC-7, Mark Waite wrote: > > You can confirm that a reference repository is being used by looking for > the file .git/objects/info/alternates in the repository. > > That sentence is phrased incorrectly. You can confirm that a referenc

Re: Use environment variable from upstream build

2020-02-25 Thread Mark Waite
I wonder if you need to use https://issues.jenkins-ci.org/browse/JENKINS-56875 and its "allow undefined parameters" setting to grant permission for the environment variables from the preceding job to be visible in the successor job? Alternatively, have you considered passing the values as paramete

Re: Jenkinsfile SCM Checkout stage, how to match remote pull request head with local build head

2020-02-24 Thread Mark Waite
after merge into master branch and after building in master branch >> "**alternates**" file also missing from the workspace path - '* >> *workspace\master411813f6\.git\objects\info* >> >> *' **is it everything okay? I cannot find weather reference repo

Re: SharedLibrary doesn´t allow git parameter to fetch all branches

2020-02-21 Thread Mark Waite
the workspace. I'm not clear why you're using a branch parameter in a Pipeline job. Isn't it more effective to define a Jenkinsfile in each branch and then allow the multibranch pipeline to create and destroy jobs automatically as branches are created and destroyed? Mark Waite

Re: Invoking the /build endpoint for a job with curl dropping parameters not explicitly passed via json

2020-02-20 Thread Mark Waite
I suspect that is intentional. I assume that the '/build' end point is not intended for use with parameters. If you want to pass parameters, use the /buildWithParameters end point. On Thu, Feb 20, 2020 at 7:35 AM Jay Hayes wrote: > Hello, > > This seems like a bug to me but, if so, I don't kn

Re: Jenkinsfile SCM Checkout stage, how to match remote pull request head with local build head

2020-02-19 Thread Mark Waite
nge from: refspec: "+refs/heads/*:refs/remotes/origin/*", refspec: "+refs/heads/pr/*:refs/remotes/origin/pr/*", to: refspec: "+refs/heads/*:refs/remotes/origin/* +refs/heads/pr/*:refs/remotes/origin/pr/*", The syntax you're using provides a value for refs

Re: Valgrind-publisher settings

2020-02-18 Thread Mark Waite
the Jenkins documentation. Mark Waite -- 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: Valgrind-publisher settings

2020-02-14 Thread Mark Waite
know what other publisher options need to be configured > or how. > > Thanks. > > > On Fri, Feb 14, 2020 at 10:15 AM Mark Waite > wrote: > >> From the Jenkins workspace. Each Jenkins job is run inside a workspace >> on an agent. That agent may be the Jenkins ma

Re: Valgrind-publisher settings

2020-02-14 Thread Mark Waite
>From the Jenkins workspace. Each Jenkins job is run inside a workspace on an agent. That agent may be the Jenkins master node or it may be another node. On Fri, Feb 14, 2020 at 11:13 AM Mark Richter wrote: > I'm totally new to Jenkins and I have a question. Where does the > valgrind-publisher

Re: Jenkins REST API documentation

2020-02-13 Thread Mark Waite
https://stackoverflow.com/questions/25661362/where-can-i-find-jenkins-restful-api-reference On Thu, Feb 13, 2020 at 9:42 PM alok kumar wrote: > Hi All, > Can someone please point me to the link that contains the Jenkins REST API > documentation? > > We need to use the rest APIs in some program.

Re: Getting "Couldn't find any revision to build" error while using Jenkins with BitBucket repository

2020-02-12 Thread Mark Waite
On Wed, Feb 12, 2020 at 7:43 AM Amila Gunathilake wrote: > [image: Capture.PNG] > Hi Mr. Mark Waite, > > I'm getting a same kind of issue when I created a Checkout stage with > "refspec" and due to that my Pull request is failing, I cannot merge this > in to my

Re: Shell script not working as expected in jenkins

2020-02-11 Thread Mark Waite
Sorry, I don't have any other suggestions to offer. On Tue, Feb 11, 2020 at 5:38 PM Sai Pavwan wrote: > Hi Mark Waite, > Thanks for your response on that. >Firstly, I have take into consideration all of the things that you > stated except the envi

Re: Shell script not working as expected in jenkins

2020-02-11 Thread Mark Waite
dependencies is to create a new account on your development computer and run the script from that new account. Another technique is to create a new account on a Jenkins agent computer and run the script from there. Another technique is to run the script from a cron or batch job as yourself. Mark Waite

Re: git plugin: "No valid HEAD. Skipping the resetting"

2020-02-11 Thread Mark Waite
On Tue, Feb 11, 2020 at 10:33 AM Martin Jost wrote: > Hello, > > > > we're using Jenkins 2.204.1 > > and the git relevant plugins > > git 3.12.1 (Can't update due to a missing dependency) Git client plugin > 3.1.1 GIT server Plugin 1.9 GitHub API Plugin 1.106 GitHub Branch Source > Plugin 2.5.8 G

Re: Running code in Windows agent but script says we are in Linux

2020-02-10 Thread Mark Waite
Use the isUnix pipeline step rather than writing your own version of that step. The System.properties that you are using will execute on the master, not on the agent. When it executes on the

Re: JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Mark Waite
> fix, that would be appreciated. > > On Friday, February 7, 2020 at 10:51:07 AM UTC-6, Mark Waite wrote: >> >> https://plugins.jenkins.io/vsphere-cloud lists that the plugin is >> maintained by Jason Swager, Eric Lordahl, and Peter Darton . They would be >> the o

Re: JCasC not working with vSphere cloud retention strategy

2020-02-07 Thread Mark Waite
https://plugins.jenkins.io/vsphere-cloud lists that the plugin is maintained by Jason Swager, Eric Lordahl, and Peter Darton . They would be the ones that would likely evaluate a pull request proposing a fix. Pull requests should be submitted to https://github.com/jenkinsci/vsphere-cloud-plugin/

Re: Jenkins Docker Master, Dynamic Docker Agents

2020-02-04 Thread Mark Waite
ion, you're encouraged to propose a Docker tutorial for jenkins.io based on your experience. Thanks, Mark Waite - <https://www.katacoda.com/courses/jenkins/build-docker-images> On Tue, Feb 4, 2020 at 11:09 AM femiadenubi wrote: > Hello all, please I need help, setting up a jen

Re: Plugin Installs Failing

2020-02-03 Thread Mark Waite
Rogers wrote: > Yes, plenty of space and permissions are correct. I should have added in > the original that I can install manually by downloading the plugin file > directly and then uploading into jenkins. > > On Mon, Feb 3, 2020 at 2:50 PM Mark Waite > wrote: > >&

Re: Plugin Installs Failing

2020-02-03 Thread Mark Waite
It may be worth checking the directory permissions to confirm that the Jenkins user can still write to that directory. You may also want to check that the disc has available free space and available inodes to allow new files to be created. On Mon, Feb 3, 2020 at 3:42 PM Steve Rogers wrote: > An

Re: Equivalent actions for what Xvfb plugin is doing

2020-02-03 Thread Mark Waite
ession, or then need to run from a service that has been granted desktop access. Mark Waite > Please suggest what are alternative ways to achieve what Xvfb is doing. > > **NOTE:** > > We've multiple pipelines and if we decide to use this plugin, in every > pipeline we'l

Re: I'm lost in trying to use a private git repository

2020-01-31 Thread Mark Waite
; > Thanks, > > Gary > > On Friday, January 31, 2020 at 2:36:03 PM UTC-8, Mark Waite wrote: >> >> Jenkins uses credentials to access private repositories. You'll need to >> provide the credentials for that repository as a Jenkins credential. >> >>

Re: I'm lost in trying to use a private git repository

2020-01-31 Thread Mark Waite
r ssh repositories. The sample repository syntax you provided is an https repository. You'll need to provide a username / password credential, not a private key credential. Mark Waite On Friday, January 31, 2020 at 11:30:49 PM UTC+1, gary oblock wrote: > > Please bear with me. I&#

Re: failed to download the workflow-api plugin

2020-01-23 Thread Mark Waite
t; All working well no issues for me. >> >> >> On 23 Jan 2020, at 14:19, Mark Waite wrote: >> >> I just downloaded an update to the Pipeline SCM Step plugin without any >> issue. I also am able to download the plugin URL's that you referenced. >> >> A

Re: failed to download the workflow-api plugin

2020-01-23 Thread Mark Waite
> email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/a587344b-bef3-4372-b84a-085c0d3ba44a%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/a587344b-bef3-4372-b84a-

Re: Git Plugin - How specify use ssh in "Repository URL" ?

2020-01-21 Thread Mark Waite
oup and stop receiving emails from it, send an > email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/CAKas9SQ8MdJud0Wsu6tR8%3DvkeYevVrZseMyYuUWMNfYqsvRxFA%40mail.gmail.com > <https://groups.google.c

Re: About Jenkins slowness for version 2.138 in multi branch pipeline project

2020-01-20 Thread Mark Waite
igured now , we are planning to make it to " >> performance-optimized" . We have observed couple of time disc IO is >> very high sometimes . >> >> On Monday, January 20, 2020 at 5:54:38 AM UTC+5:30, Mark Waite wrote: >>> >>> I'm not awa

Re: About Jenkins slowness for version 2.138 in multi branch pipeline project

2020-01-19 Thread Mark Waite
il to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/319f90ff-5410-4495-bb46-51d61745b3e8%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/319f90ff-5410-4495-bb46-51d6174

Re: How to hide Branches, Changes, Tests views in Jenkins Blue Ocean?

2020-01-19 Thread Mark Waite
nd an > email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/c241d811-ae41-4d30-8cd8-89f8b6f3ff4a%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/c241d811-ae41-4d3

Re: fatal: git index-pack failed

2020-01-16 Thread Mark Waite
t have enough > writable storage to fetch all objects of more than a dozen very large Git > repositories. > > Mark Waite, if this is something you know how to fix but prefer to > delegate, I’m happy to volunteer. I’m new to writing Jenkins plugins, but > I should be able to help i

Re: GIT jenkins integration issues -Permission denied(Public Key)

2020-01-13 Thread Mark Waite
s/b4f8aba5-f0bb-46b7-8246-f2ee1413ce71%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/b4f8aba5-f0bb-46b7-8246-f2ee1413ce71%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You received this message because you are

Re: Scheduling the job to wait for license to be available

2020-01-11 Thread Mark Waite
com/d/msgid/jenkinsci-users/CAB-nQ9naGsXueOej%2Ba5SdF-eXLNKdj4_DSj%3DtS163UDWMs7bCg%40mail.gmail.com > <https://groups.google.com/d/msgid/jenkinsci-users/CAB-nQ9naGsXueOej%2Ba5SdF-eXLNKdj4_DSj%3DtS163UDWMs7bCg%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- Thank

Re: Jenkins is not starting when i install Environment Injector Plugin using manage plugin

2020-01-10 Thread Mark Waite
e.com/d/msgid/jenkinsci-users/9b9478f1-cd9a-435a-a212-17088d6c389c%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and

Re: Jobs with a wildcard tag refspec sometimes rebuild tags at same commit

2020-01-06 Thread Mark Waite
f you have any new > thoughts or if you feel I should file a bug report (for perhaps the > logRotate or BuildDiscarder area?) as I continue to research and test. > > Thank you again for your help and everything you do for the Jenkins > community! > > -Eric > > > > O

Re: Jobs with a wildcard tag refspec sometimes rebuild tags at same commit

2020-01-03 Thread Mark Waite
lso could be that the history entry which included that tag was removed from the list, and thus was no longer visible. Mark Waite > I am seeking help to further investigate and trace polling activity to try > to determine what changes are being detected that trigger the job to run > again,

Re: Email notification from Jenkins to Internal Server

2019-12-20 Thread Mark Waite
7c1f19-67a7-4c35-929a-187e87c5ad21%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving email

Re: Is wiki.jenkins.io down today?

2019-12-17 Thread Mark Waite
ups.google.com/d/msgid/jenkinsci-users/CAA4vtDQhL1O%2BTHs5VePY8NHA4yiuabXMCXW6eMZQcJh562Lbew%40mail.gmail.com > <https://groups.google.com/d/msgid/jenkinsci-users/CAA4vtDQhL1O%2BTHs5VePY8NHA4yiuabXMCXW6eMZQcJh562Lbew%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite

Re: why does multibranch pipeline fetch branch source 3 times?

2019-12-17 Thread Mark Waite
> > Git plugin documentation is at https://plugins.jenkins.io/git and at https://github.com/jenkinsci/git-plugin/blob/master/README.adoc#clone-extensions > My team is interested in performing "clean checkouts" each build but > perhaps we should be less paranoid and remove t

Re: why does multibranch pipeline fetch branch source 3 times?

2019-12-16 Thread Mark Waite
his 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 > https://groups.goog

Re: Force Jenkins job to be in unstable state when Junit tests fail...

2019-12-10 Thread Mark Waite
it, send an > email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/4204be77-12a6-42fb-8e36-d4aeea09f25d%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/4204be77-12a6

Re: Dynamic Sleep time to execute next step in pipeline

2019-12-01 Thread Mark Waite
on on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/28a8b3da-d8e3-4051-a4a3-7f6144b7ef83%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/28a8b3da-d8e3-4051-a4a3-7f6144b7ef83%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks

Re: several issues

2019-11-25 Thread Mark Waite
the type of verification being used. Issue5: Remoting disconnects early when it is started as Client/Agent on > Windows(7/10) when IPv6 privacy extensions have been enabled. How can i > configure Remoting to use the 'prefered' IPv6 address as source address > when it connects t

Re: Git Commit Message as an Environment Variable

2019-11-20 Thread Mark Waite
b visit > https://groups.google.com/d/msgid/jenkinsci-users/a0b485ff-8f48-4432-be5b-8a2d6af600a4%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/a0b485ff-8f48-4432-be5b-8a2d6af600a4%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks!

Re: How to force jenkins to use $JAVA_HOME/ instead of $JAVA_HOME/jre?

2019-11-13 Thread Mark Waite
ins.war, and in a Docker image. I don't have any other suggestions to offer. > That problem didn’t exist with Jenkins 1 as this build worked correctly in > it. > > > > BR > > Marco > > > > *Von:* jenkinsci-users@googlegroups.com > *Im Auftrag vo

Re: How to force jenkins to use $JAVA_HOME/ instead of $JAVA_HOME/jre?

2019-11-12 Thread Mark Waite
ither case, Jenkins in your environment needs to run with a JDK, not a JRE. It is currently running with a JRE. - Create a Jenkins agent configured to use the desired JDK and run the build on the Jenkins agent Mark Waite > which is yet another JVM installation. > > > > T

Re: Jenkins v1.563 Legacy

2019-11-12 Thread Mark Waite
Jenkins 1.563 likely uses Java 7. Jenkins 1.563 does not use Postgres or any other SQL database by default On Tuesday, November 12, 2019 at 3:39:16 AM UTC-7, Johann van der Westhuizen wrote: > > Hi, > > Yes, I know but we have a legacy Jenkins server running Ubuntu 08.04 and I > tried to upgrad

Re: How to force jenkins to use $JAVA_HOME/ instead of $JAVA_HOME/jre?

2019-11-11 Thread Mark Waite
email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/AM0PR10MB31079EBED16FBFD216C46DB2E0740%40AM0PR10MB3107.EURPRD10.PROD.OUTLOOK.COM > <https://groups.google.com/d/msgid/jenkinsci-users/AM0P

Re: Do you really have to use multi-branch pipeline to do pipeline as code?

2019-10-29 Thread Mark Waite
-- > 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 we

Re: Do you really have to use multi-branch pipeline to do pipeline as code?

2019-10-28 Thread Mark Waite
ogle.com/d/msgid/jenkinsci-users/c45794e2-bb73-4b06-b450-a6cfef76b15f%40googlegroups.com > . > -- Thanks! Mark Waite -- 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,

Re: Getting user who created a pull request with Jenkins pipeline

2019-10-23 Thread Mark Waite
t > https://groups.google.com/d/msgid/jenkinsci-users/570f4ca5-5c27-42df-bd12-4969426d65e5%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/570f4ca5-5c27-42df-bd12-4969426d65e5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark

Re: Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-21 Thread Mark Waite
Created issue 59875: https://issues.jenkins-ci.org/browse/JENKINS-59875 > > Let me know if you need additional information. > > On Tuesday, 22 October 2019 00:41:45 UTC+13, Mark Waite wrote: >> >> Thanks. >> >> Could you open an issue on Jira >> https://issues

Re: Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-21 Thread Mark Waite
at >> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) >> at java.lang.reflect.Method.invoke(Method.java:498) >> at >> org.jenkinsci.plugins.gitclient.RemoteGitImpl$CommandInvocationHandler.invoke(RemoteGitImpl.java:13

Re: Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-20 Thread Mark Waite
ild.java:499) > at hudson.model.Run.execute(Run.java:1815) > at hudson.model.FreeStyleBuild.run(FreeStyleBuild.java:43) > at > hudson.model.ResourceController.execute(ResourceController.java:97) > at hudson.model.Executor.run(Executor.java:429

Re: Whats is the format for custom pipeline library help files?

2019-10-18 Thread Mark Waite
https://groups.google.com/d/msgid/jenkinsci-users/73becfdb-b513-450b-af2d-5822ef259e86%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/73becfdb-b513-450b-af2d-5822ef259e86%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You rec

Re: jenkins pipeline scripts are blank in the UI after upgrade

2019-10-17 Thread Mark Waite
r...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/CAD6gr7KgkE_0joKsgOXoPjL-TRpJ7PhrjrZ46JG0wk32DzajAQ%40mail.gmail.com > <https://groups.google.com/d/msgid/jenkinsci-users/CAD6gr7KgkE_0joKsgOXoPjL-TRpJ7PhrjrZ46JG0wk32DzajAQ%4

Re: Jenkins List Files of Git Branch

2019-10-11 Thread Mark Waite
The git ls-remote command is not allowed to list remote files, only remote references (branches and tags). Git providers (GitHub, Bitbucket, Gitea, Assembla, Beanstalk, Gitlab, etc.) generally provide one or more REST API's that will list remote files in a branch. On Thursday, October 10, 2019

Re: create a local linux machine as a slave for aws ec2 cloud jenkins

2019-10-11 Thread Mark Waite
roups.google.com/d/msgid/jenkinsci-users/69d8b34e-959e-4ec2-848e-12a46fdbd829%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/69d8b34e-959e-4ec2-848e-12a46fdbd829%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You

Re: Restrict credential retrieval to a specific slave

2019-10-09 Thread Mark Waite
it, send an > email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/25d0de20-d7c4-4336-8645-d6302768d2db%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/25d0de20-d7c4

Re: gitSCM failed after updates

2019-09-29 Thread Mark Waite
't test with cygwin in the future. > On Monday, September 30, 2019 at 8:01:52 AM UTC+8, Mark Waite wrote: >> >> >> >> On Sun, Sep 29, 2019 at 5:12 PM Henry Xu wrote: >> >>> I guess I have same issue. And it's wired as it works will on a machine >&g

Re: gitSCM failed after updates

2019-09-29 Thread Mark Waite
>> git to the just-installed "Git for Windows", and ... fixed. I may have to >> make some changes in the Jenkinsfiles themselves, but it seems clear now >> that the latest Cygwin git broke something, and that Git for Windows fixed >> it ... >> >> This w

Re: Updating Corp to Corp list!

2019-09-26 Thread Mark Waite
I banned this person from the list. We don't accept recruiting e-mail messages on the Jenkins users mailing list. On Thursday, September 26, 2019 at 4:03:01 PM UTC-6, Srujan Reddy wrote: > > Hi All! > > > > I am updating my Corp to Corp list. Looking to partner with Employers who > can suppor

Re: Heavy checkouts for pull requests take a lot of disk space on our master server

2019-09-24 Thread Mark Waite
tps://groups.google.com/d/msgid/jenkinsci-users/b230aa74-6598-454d-a052-1b573fba2954%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubs

Re: Match multiple branches with Git plugin

2019-09-22 Thread Mark Waite
on on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/76d496e6-edea-4ff9-b317-bdc69481f955%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/76d496e6-edea-4ff9-b317-bdc69481f955%40googlegroups.com?utm_medium=email&utm_source=footer> > . >

Re: Install Jenkins as WAR file or Install using package installers?

2019-09-22 Thread Mark Waite
llation on different machines, then choose a Docker based installation. Docker installations use the war file and allow you to specify your custom additions. If you have a platform that does not provide a package installer, then use the war file. Mark Waite On Sun, Sep 22, 2019 at 8:01 AM

Re: SSH agent uses username 'jenkins' instead of the one configured in the credential

2019-09-20 Thread Mark Waite
URL in the git command because I only > want to checkout the submodules. > > Regarding openSSH, I think I'm up to date, I'm using the latest Ubuntu > 18.04 packages. > > > On Thursday, September 19, 2019 at 2:19:55 AM UTC+2, Mark Waite wrote: >> >&

Re: Restrict credential retrieval to a specific slave

2019-09-19 Thread Mark Waite
ID} > -Dadminurl='${URL_TST}'" > } > } > } > } > > > -- > You received this message because you are subscribed to the Google Groups > "Jenkins Users" group. > To unsubscribe from

Re: Jenkins Docker Image and extended Linux executables

2019-09-19 Thread Mark Waite
ur own Dockerfile which is based on the Jenkins Dockerfile and adds the programs you need using the appropriate operating system commands (like `apt-get install`). Mark Waite > br > Carsten > > > > > -- > You received this message because you are subscribed to th

Re: Restrict credential retrieval to a specific slave

2019-09-19 Thread Mark Waite
le 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 > https://groups.google.com/d/msgid/jenkinsci-users/fca0f38f-1b9a

Re: Restrict credential retrieval to a specific slave

2019-09-19 Thread Mark Waite
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 > https://groups.google.com/d/msgid/jenkinsci-users/2540cf8f-0413-4ec1-ae4a-136f2eeaf894%40googlegroups.com > . > -- T

Re: SSH agent uses username 'jenkins' instead of the one configured in the credential

2019-09-18 Thread Mark Waite
nkins 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 > https://groups.google.com/d/msgid/jenkinsci-users/b5f85d92-adfd-496c-b7c8-2d7a34ad4b

Re: git log master..hotfix/SFCC.1.11.0 --oneline | tail -1

2019-09-05 Thread Mark Waite
t;Add" section for multibranch pipelines there is an entry which mentions "local branch". Click that to enable it, then either leave the value empty (to accept the default) or insert the name of your branch. > > On Thu, Sep 5, 2019 at 6:13 AM Mark Waite > wrote: > >> Us

Re: git log master..hotfix/SFCC.1.11.0 --oneline | tail -1

2019-09-05 Thread Mark Waite
s.google.com/d/msgid/jenkinsci-users/089bb2c9-3426-4b0c-a175-ecaa52a7bfd0%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/089bb2c9-3426-4b0c-a175-ecaa52a7bfd0%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You

Re: Under Jenkins SignTool Error "No certificates were found", works fine logged on as user

2019-09-05 Thread Mark Waite
login. > If I login the vm, the slave node will disconnect. > > Is there any way to keep the slave node online? (and also can have enough > privilege for ev usb token sign) > Thanks for your help. > > > > Mark Waite 於 2019年9月5日 週四 上午6:14寫道: > >> >> >>

Re: Under Jenkins SignTool Error "No certificates were found", works fine logged on as user

2019-09-04 Thread Mark Waite
an agent which is running on the desktop. The agent can be on the same computer where you run the Jenkins master, but the new agent will need to be launched from the desktop. If you're running the master from a command line, then it should work. Thanks, Mark Waite > > Mark Waite於 2019

Re: Bitbucket branch source - WARN: Could not find ref: XXX in refs/heads or refs/remotes/origin

2019-09-02 Thread Mark Waite
uot;Honor refspec on initial checkout" in order to assure that the initial clone also uses the custom refspec definition. Mark Waite On Mon, Sep 2, 2019 at 3:45 PM Dan Tran wrote: > Hi > > I am looking for suggestion on how to configure BB branch source plugin to > fix the

Re: Trigger build via REST API since 2.176.3

2019-09-02 Thread Mark Waite
w this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/97c3ff89-83ab-42f9-bb89-72922a940383%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/97c3ff89-83ab-42f9-bb89-72922a940383%40googlegroups.com?utm_medium=email&utm_source=footer> > . &g

Re: Generate API Token does not display token to user.

2019-08-29 Thread Mark Waite
ooglegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/77cca0af-1244-4193-94fe-7e87d9de9a98%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You received this message because you are subscribed to the Google Groups "Jenki

Re: Combining periodic SCM check with building individual commits

2019-08-28 Thread Mark Waite
emote repository and runs a script that computes the list of changes since the last run, then launches the job defined step 1 with each of the SHA-1 values that have arrived since the last run Mark Waite On Wed, Aug 28, 2019 at 9:14 AM 'Mark Raynsford' via Jenkins Users &l

Re: Latest GitHub Branch Source not scanning with credentials?

2019-08-21 Thread Mark Waite
urce plugin. Define credential domains correctly, and the problem is resolved. On Tue, Aug 20, 2019 at 7:40 AM Mark Waite wrote: > The root issue seems to be the credentials being defined in the parent > folder instead of being defined at the root. I have several credentials > defined in that

Re: how do I modify one option in scm.getUserRemoteConfigs without having to manually set all the options?

2019-08-21 Thread Mark Waite
/heads/${branch}:refs/remotes/origin/${branch}" Then use the new variable as the value as in: userRemoteConfigs: myRemoteConfigs Mark Waite On Wed, Aug 21, 2019 at 2:56 PM red 888 wrote: > in my jenkins pipeline i have this: > > > checkout([$class: 'GitSCM', >

Re: Jenkins: user is missing the Overall/Read permission - Issue

2019-08-21 Thread Mark Waite
Doesn't it resolve the issue if you check the "Read" box in the "Overall" column for the user "manual"? Mark Waite On Wed, Aug 21, 2019 at 7:15 PM 'joe khese' via Jenkins Users < jenkinsci-users@googlegroups.com> wrote: > Hello > > di

Re: Jenkins job failure analysis

2019-08-20 Thread Mark Waite
t; > Thanks, > Sameer > > On 20-Aug-2019, at 17:49, Mark Waite wrote: > > This is a question best asked on the user mailing list. The developer > list is used for development discussions related to Jenkins and its > components (plugins, modules, etc.). > > Jenk

Re: Latest GitHub Branch Source not scanning with credentials?

2019-08-20 Thread Mark Waite
first introduced the behavior. On Mon, Aug 19, 2019 at 1:38 PM Mark Waite wrote: > > > On Mon, Aug 19, 2019 at 9:13 AM Devin Nusbaum > wrote: > >> If I understand correctly, the problem is that in the non-working case, >> branch indexing ends up using anonymous cre

Re: Latest GitHub Branch Source not scanning with credentials?

2019-08-19 Thread Mark Waite
-cps-global-lib 2.15. I'll spend more time today investigating further in an attempt to identify the most relevant differences between the working and the non-working cases. Mark Waite > On Aug 17, 2019, at 12:54, Mark Waite wrote: > > I've updated to GitHub Branch Source 2.5.6

Re: Converting to pipeline questions

2019-08-15 Thread Mark Waite
o use the multibranch pipeline job to precisely define which branches are built and which are not built. Whether or not a Jenkinsfile exists on a branch, the multibranch pipeline job would define which branches are allowed to build and which are ignored. Thanks, Mark Waite > > > On Thursday,

Re: Converting to pipeline questions

2019-08-15 Thread Mark Waite
r-by-branch-with-wildcard.png] I have a private GitHub repository that includes several branches. I confirmed that it was able to filter by branch name with wildcards. Thanks, Mark Waite > > On Wednesday, August 14, 2019 at 1:06:47 PM UTC-4, Mark Waite wrote: >> >> >> &

Re: Converting to pipeline questions

2019-08-14 Thread Mark Waite
development work is done, using a Multibranch job does not fit > our needs. At least that is my impression, in that we do not want to > possibly have builds being run for any previous versions of the product > just because they have a Jenkinsfile. > > On Wednesday, August 14, 2019 a

Re: Converting to pipeline questions

2019-08-14 Thread Mark Waite
itted https://github.com/jenkins-infra/jenkins.io/pull/2411 to guide users towards remote repositories. Thanks! Mark Waite On Tuesday, August 6, 2019 at 2:54:29 PM UTC-7, Louis Elston wrote: > > I guess that either I misread this page, or it is out of date already... > https://jenki

Re: Converting to pipeline questions

2019-08-14 Thread Mark Waite
n organization folder), then you can use Blue Ocean to launch jobs and to view the execution progress of the pipeline. Thanks, Mark Waite On Tuesday, August 13, 2019 at 1:14:54 PM UTC-7, Louis Elston wrote: > > Mark Wrote..."Blue Ocean is not limited to multibranch Pipelines.

Re: Gradle Tool Failed Download

2019-08-07 Thread Mark Waite
Step.java:152) > at > org.jenkinsci.plugins.workflow.steps.ToolStep$Execution.run(ToolStep.java:133) > at > org.jenkinsci.plugins.workflow.steps.SynchronousNonBlockingStepExecution.lambda$start$0(SynchronousNonBlockingStepExecution.java:47) > at >

Re: Gradle Tool Failed Download

2019-08-07 Thread Mark Waite
eiving emails from it, send an > email to jenkinsci-users+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/jenkinsci-users/93ecd2ab-622a-4306-ad97-6546972c3471%40googlegroups.com > <https://groups.google.com/d/msgid/jenki

Re: Converting to pipeline questions

2019-08-06 Thread Mark Waite
eos - https://jenkins.io/blog/2017/08/08/introducing-jenkins-minute/ - CloudBees' free Pipeline Fundamentals core - https://standard.cbu.cloudbees.com/cloudbees-university-jenkins-pipeline-fundamentals - Udemy courses on Jenkins Pipeline - https://www.udemy.com/courses/search/?src

Re: Azure windows slave keeps disconnecting

2019-08-05 Thread Mark Waite
lations successfully running Jenkins masters and Jenkins agents on different machines using the same connection technique you're using. I've made my guesses about what might be different in your environment compared to those other installations. Mark Waite > > On Monday, 5 Augus

Re: Azure windows slave keeps disconnecting

2019-08-05 Thread Mark Waite
4 listed as disabled, then it is unlikely that anything has changed the configuration. I was speculating that something might be changing the configuration, but if something is changing the configuration, then you should see the protocol listed as 'disabled' instead of 'enabled'

Re: Azure windows slave keeps disconnecting

2019-08-05 Thread Mark Waite
isable specific protocols. On Mon, Aug 5, 2019 at 6:29 AM Shubham Bansal wrote: > https://pastebin.com/ib0PK5af > > Can you tell me more from these logs of the slave windows machine? > > > On Monday, 5 August 2019 17:42:23 UTC+5:30, Mark Waite wrote: >> >> Connecting

Re: Azure windows slave keeps disconnecting

2019-08-05 Thread Mark Waite
enkinsci-users/245d1ca6-c04a-469d-a3c3-5ee1e96ba966%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- Thanks! Mark Waite -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and s

Re: Statistics plugin to help identify bottlenecks

2019-08-02 Thread Mark Waite
't be > hosted on-site, i.e. we would be dependent on (and sending internal data > to) CloudBee's servers? Unfortunately, that's not possible for us. > > Regards > Björn > > Am 8/1/2019 um 5:23 PM schrieb Mark Waite: > > I use CloudBees DevOptics to trac

<    1   2   3   4   5   6   7   8   9   10   >