Collabet net plugin help you upload the jar into team forge.

2012-05-31 Thread Tim
Hi there, I use the collabnet plugin help me to upload jar package into teamforge automatically, however, the bad thing is that I have to create the package and folder first in the teamforge. Do you know if there is better idea for me not create this folder first? Br, Tim

M2 Release plugin disapper

2012-06-11 Thread Tim
u have any experience for this? Br, Tim

parallel and splitTests questions

2017-05-18 Thread Tim
nyone provide a simple example of parallel and splitTests(if necessary) that accomplishes that? Or is this not possible with Jenkins? Thanks! -tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: is 51,000 tests too much in a job?

2015-10-09 Thread Tim
I run jobs that have that many, one with about 80,000 tests. of course there's a lot of work going on, but I wouldn't call it a painful slowdown. On Thursday, October 8, 2015 at 2:25:22 PM UTC-4, Kevin Goess wrote: > > Is 51,000 tests too much in a single job? > > We're seeing painful slowdowns i

Jenkins replaces all occurrences of my user name in the log with asterisks. How can I change that?

2019-05-21 Thread Tim Jaacks
While this makes sense for actual occurrences (i.e. where the asterisk'ed text REALLY is my user name), it is quite counterproductive in situations where the user name accidentally matches some other strings in the log. For example, my user name I use in the credentials is "jenkins" (oh yeah, c

Re: Jenkins replaces all occurrences of my user name in the log with asterisks. How can I change that?

2019-05-21 Thread Tim Jaacks
Thanks for your reply, Mark. I am using the credentials plugin to provide the stated credentials and I thought, that it is actually this plugin which performs the masking. If not, which plugin does this? I did not find any installed plugins in my instance which seem to do this. Am Dienstag, 21.

Re: Jenkins replaces all occurrences of my user name in the log with asterisks. How can I change that?

2019-05-21 Thread Tim Jaacks
Thanks very much for the link. That is indeed exactly my issue. Is there an alternative to using the credentials binding plugin? I need the credentials to be inserted into an URL within the test script. How can I do this without the credentials binding plugin? Am Dienstag, 21. Mai 2019 14:48:57

stash/unstash file size limit and performance

2019-10-03 Thread Tim Black
The Jenkins documentation for the stash pipeline step says that it's only to be used for "small files", with no explanation why. Specifically, how is stash bad for large, i.e. not

problems changing triggers{} in multibranch pipeline Jenkinsfile

2019-10-03 Thread Tim Black
Jenkinsfile in SCM. But the build still was triggered last night at midnight. Please let me know if you know what's going wrong here, or have any suggestions for troubleshooting this. Thanks, Tim -- You received this message because you are subscribed to the Google Groups "Jenkin

Re: Anyway to programatically update a Jenkinsfile?

2019-10-03 Thread Tim Black
I have to agree with Jeremy on this. Using a templating engine like m4 or jinja2 is superior to programmatic generation of groovy, if you need to do it on the fly. Why? Simplicity and Readability. I inherited a build system that is based on using a multibranch pipeline with a Jenkinsfile that l

Re: problems changing triggers{} in multibranch pipeline Jenkinsfile

2019-10-04 Thread Tim Black
Thanks Bjorn for helping clarify that. I would take what you said a step further by changing "could" to "must", since it appears that simply adding a trigger back into a Jenkinsfile for a job that has run since the trigger was removed, will necessarily have no effect until you manually run the j

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

2019-10-28 Thread Tim Black
Just double checking this, at the below link it says the only way to use pipeline as code is to use the multi Branch pipeline configuration. Is this really true? https://jenkins.io/doc/book/pipeline-as-code/ I thought perhaps there was a way to configure a job that doesn't monitor for branches

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

2019-10-29 Thread Tim Black
Thanks Mark. Of course you're correct. My main problem and point to make here (and with Jenkins ecosystem in general) is that the documentation says you have to use multi-branch pipeline to use pipeline as code, whereas this is patently false. I see in my freestyle pipeline job configuration tha

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

2019-11-07 Thread Tim Black
t; <https://jenkins.io/blog/2017/08/08/introducing-jenkins-minute/>" video > series. Self-paced courses are available from CloudBees, Udemy, and other > online course systems. Jenkins Pipeline Fundamentals > <https://standard.cbu.cloudbees.com/cloudbees-university-jenkins

What compression algorithm is used by the pipeline zip step, and is it tunable?

2019-12-02 Thread Tim Black
tunable. Also I'd rather not depend on another plugin. If neither of the above work, I'll simply use sh step to call xz, gzip, bzip, or the like, from my linux-based master. Thanks for your consideration, Tim Black -- You received this message because you are subscribed to the Googl

Re: What compression algorithm is used by the pipeline zip step, and is it tunable?

2019-12-04 Thread Tim Black
storing them independent > from jenkins (S3, maven-style repo, whatever matches your use-case). > > > Björn > > Am Montag, 2. Dezember 2019 20:56:02 UTC+1 schrieb Tim Black: >> >> Our projects produce large artifacts that now need to be compressed, and >>

why does multibranch pipeline fetch branch source 3 times?

2019-12-16 Thread Tim Black
Is there ANY multibranch pipeline configuration that would allow me to: * place a Jenkinsfile at single BranchSource repo root, and * perform A SINGLE FETCH of this repo, full stop, and * fetch --tags in this single fetch, and * all of the above works when either "WipeWorkspace" or "CleanBeforeChe

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

2019-12-17 Thread Tim Black
disc space for a git workspace. > Refer to > https://www.slideshare.net/markewaite/git-for-jenkins-faster-and-better for > slides that I presented at Jenkins World 2019 on those alternatives. Refer > to > https://support.cloudbees.com/hc/en-us/articles/115001728812-Using-a-Git-ref

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

2019-12-17 Thread Tim Black
y to me. Do I have control over when and how those are going to occur? E.g. how can I make the subsequent checkout/fetch/clone operations use `--tags` instead of `--no-tags`? On Tuesday, December 17, 2019 at 7:54:13 AM UTC-8, Mark Waite wrote: > > > > On Tue, Dec 17, 2019 at 7:45 AM T

WebSocket Agents and Archiving Artifacts Performance

2020-08-26 Thread Tim Black
g java SSH implementation JSCH). The java ssh just can't get anywhere near 1Gb/s network speed that native SSH can manage easily" So, I was just wondering if WebSocket Agents might perform better at archiving artifacts bc they are implemented so differently. Thanks, Tim Black -- Y

how to build on branch creation but not build on other scm event/commit?

2020-09-16 Thread Tim Black
1. I have a multibranch pipeline job that takes 30min to run, has a lot of branches, and my company is still at the earlier stages of devops transformation, so with our current infrastructure we do not want to trigger a build every commit. 2. Our job pipeline uses parameters heavily, so I would

Re: how to build on branch creation but not build on other scm event/commit?

2020-09-17 Thread Tim Black
Thanks Jeremy. Our developers already have control of their projects' branches' Jenkinsfiles so they can define whatever triggers/schedule they want. If I were going to hack this, I'd probably prefer to do the opposite of what you're recommending. Since git scanning is a wheel already invented

How do you set java options for ssh agents

2020-09-22 Thread Tim Black
I'm using ssh-slaves-plugin to configure and launch 2 ssh agents, and I've specified several java options in these agents' config (see photo and text list below), but when these agents are launched, the agents' log still shows empty jvmOptions in

Re: How do you set java options for ssh agents

2020-09-23 Thread Tim Black
Thanks everyone, it's working now (see below for details). kuisathaverat, these agents have 96GB total RAM. Thanks for the explanation. Our builds are very RAM intensive, and I misunderstood that the builds happened within the remoting java process. Sounds like you're saying in this case there's

Re: How do you set java options for ssh agents

2020-09-23 Thread Tim Black
10, sshHostKeyVerificationStrategy=hudson.plugins.sshslaves.verifiers.NonVerifyingKeyVerificationStrategy, tcpNoDelay=true, trackCredentials=true} Thanks for your help in diagnosing these behaviors. kuisathaverat, let me know if any of this feels like a bug in ssh-slaves-plugin or configurat

Re: How do you set java options for ssh agents

2020-09-25 Thread Tim Black
>> see how it behaves, then we will know if it is an issue or not, in any case >> is weird. >> >> El El mié, 23 sept 2020 a las 22:10, Tim Black >> escribió: >> >>> More info: In my case, a reboot is definitely needed. A >>> disconnect/reconnect

Re: How do you set java options for ssh agents

2020-09-25 Thread Tim Black
ply if you stop > the Docker container and start it again the changes are applied. > > El vie., 25 sept. 2020 a las 17:33, Tim Black () > escribió: > >> Thanks. What's the difference between "restart Jenkins from UI" and "stop >> the Jenkins ins

Re: How do you set java options for ssh agents

2020-10-03 Thread Tim Black
more context. >>> It is easy to check, run a Jenkins Docker container configured with >>> JCasC (e.g. >>> https://github.com/kuisathaverat/jenkins-issues/tree/master/JENKINS-63703) >>> then connect to the container and modify the JENKINS_HOME/jenkins.yaml file

Re: Can Jenkins redirect HTTP requests to HTTPS?

2020-10-23 Thread Tim Black
Owen, did your assertion turn out to be true? Is a reverse proxy required to perform this redirection of jenkins requests from http (80,8080) to https (port 8443)? I'm currently using iptables to forward 443 to 8443 to allow my users to not require a port in the URL, however, this does still r

Re: Can master checkout return variables available to slave builds

2013-06-30 Thread Tim Ford
I might use Groovy for this. Install the Groovy Pluginand write a Groovy script that calls commands to update the git/hg repos and which can then parse some command output to get the hashes. Once you have the hashes in Groovy variable

Re: How to keep Unix process alive after job is completed?

2013-07-03 Thread Tim Ford
John, your issue might be unrelated to Jenkins. See: http://stackoverflow.com/questions/285015/linux-prevent-a-background-process-from-being-stopped-after-closing-ssh-client On Wednesday, July 3, 2013 5:42:10 AM UTC-5, John Vacz wrote: > > We have a job executing a shell script (on a slave) t

Re: How to get all builds of a project via API

2013-07-03 Thread Tim Ford
curl -d 'script=println Jenkins.instance.getItem(jobName).builds.each{ println "${it.number}:${it.startTimeInMillis}:${it.duration}:${it.result}" };' http://localhost:8080/scriptText On Wednesday, July 3, 2013 6:55:17 AM UTC-5, Dirk Heinrichs wrote: > > Hi, > > > > I’ve got a small Groovy sc

Re: Disk usage plugin not working

2013-12-06 Thread Tim Drury
/JENKINS-20876 Could you look at the Jenkins monitoring utility (/monitoring); at the bottom is a link to provide a thread dump. See if you have a thread stuck with a similar stack trace as the one in the Jira bug report. Worst case: disable the disk-usage plugin. -tim On Wednesday, December 4

Getting OutOfMemoryError (OOM) constantly in latest update to 1.542.

2013-12-06 Thread Tim Drury
actProject.java:1077) hudson.maven.MavenBuild.getParentBuild(MavenBuild.java:165) hudson.maven.MavenBuild.getWhyKeepLog(MavenBuild.java:273) hudson.model.Run.isKeepLog(Run.java:572) ... It seems something in "core" Jenkins has changed and not for the better. Anyone seeing these issues? -tim -- You rec

Re: Getting OutOfMemoryError (OOM) constantly in latest update to 1.542.

2013-12-09 Thread Tim Drury
pefully Jenkins will tell me if they must be downgraded too. -tim On Monday, December 9, 2013 7:45:28 AM UTC-5, Stephen Connolly wrote: > > How does the current LTS (1.532.1) hold up? > > > On 6 December 2013 13:33, Tim Drury >wrote: > >> We updated Jenkins to 1.542 two da

Re: Getting OutOfMemoryError (OOM) constantly in latest update to 1.542.

2013-12-09 Thread Tim Drury
se of all my recent OOM errors? If so, how do I get rid of it? -tim On Monday, December 9, 2013 9:41:25 AM UTC-5, Tim Drury wrote: > > I intended to install 1.532 on Friday, but mistakenly installed 1.539. It > gave us the same OOM exceptions. I'm installing 1.532 now and will

Re: Getting OutOfMemoryError (OOM) constantly in latest update to 1.542.

2013-12-09 Thread Tim Drury
This Jira issue seems to capture my problem: https://issues.jenkins-ci.org/browse/JENKINS-19544 On Monday, December 9, 2013 11:32:21 AM UTC-5, Tim Drury wrote: > > I'm doing a heap-dump analysis now and I think I might know what the issue > was. The start of this whole proble

Re: Getting OutOfMemoryError (OOM) constantly in latest update to 1.542.

2013-12-12 Thread Tim Drury
bs are running. The alternative is to manually delete the disk-usage XML elements from the build.xml files in each job's build directories. I did this for about 200 files before I got tired of doing it. A groovy script could probably be written to do this. -tim On Thursday, December

irc plugin notification strategies - new use case?

2013-01-23 Thread Tim Pizey
what I said but the status of the build that I broke/fixed. cheers Tim -- Tim Pizey - http://pizey.net/~timp

Subversion path "doesn't exist in the repository"

2013-02-19 Thread Tim Mickelson
I'm using Jenkins 1.5 and have a subversion repository 1.7.x and when I create a project with Subversion putting in the repository URL the url svn+ssh://host/path/to/repository all is fine, but when i add my project, i.e. svn+ssh://host/path/to/repository/project/trunk (which of course exists)

Re: Subversion path "doesn't exist in the repository"

2013-02-24 Thread Tim Mickelson
I'm having the exact problema described in JENKINS-11933, but this issue was closed in 2012, I'm using version 1.500. Can anyone give me a hint about what to do? On Tuesday, February 19, 2013 1:19:34 PM UTC+1, Tim Mickelson wrote: > > I'm using Jenkins 1.5 and have a subver

Jenkins hiding compiler errors for maven 3 project

2012-02-10 Thread Drury, Tim
n Jenkins' Jira: https://issues.jenkins-ci.org/browse/JENKINS-10333 but no action had been taken. Has anyone else seen this? Is this a Jenkins issue or a Maven issue (or both)? -tim Tim Drury Architect SAP Manufacturing Execution (SAP ME) Supply Chain Management SAP Labs, LLC T +1 404 9

OOM error in submodule build; Jenkins says "SUCCESS"

2012-03-13 Thread Drury, Tim
#2". I've increased the heap as far as I can with the 32-bit JVM so I'm switching to a 64-bit JVM trying to get a good build for QA. Any ideas about these two issues: 1. Seemingly good/unstable builds switching to red (failed) after Jenkins restart 2. OOM error dur

RE: OOM error in submodule build; Jenkins says "SUCCESS"

2012-03-14 Thread Drury, Tim
ad is a serious issue for software that builds production-quality products. -tim From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Drury, Tim Sent: Tuesday, March 13, 2012 9:40 AM To: jenkinsci-users@googlegroups.com Subject: OOM error in submodule bui

Unable to get Unix Authorisation (PAM) to work

2012-03-30 Thread Tim Pizey
, between Jenkins users and scm committers, generated by calling them both people. It might be nice to make the distinction. cheers Tim -- Tim Pizey - http://pizey.net/~timp

Re: problems with 'mvn deploy wagon:upload' when invoked from jenkins

2012-04-02 Thread Tim Pizey
Hi Sampath, There is a possibility that Jenkins is using Maven3 and you are using maven2 outside of Jenkins. cheers Tim On 2 April 2012 07:50, wrote: > I have ftp configured using vsftp in linux x86_64 (vm) environment, running > > Red Hat Enterprise Linux Server release 6.2

Re: problems with 'mvn deploy wagon:upload' when invoked from jenkins

2012-04-02 Thread Tim Pizey
. cheers Tim -- Tim Pizey - http://pizey.net/~timp

Maven installs and SNAPSHOT deploys

2012-05-02 Thread Tim Pizey
install periodically - a maven deploy on SCM change what is the best way of doing this? cheers Tim -- Tim Pizey - http://pizey.net/~timp

Re: CVS and extssh

2012-05-02 Thread Tim Pizey
There seem to be some relevant instructions here: http://www-d0.fnal.gov/software/cmgt/cvs_ssh.html you need to have an environment variable CVS_RSH set to your ssh executable. my guess. Tim On 2 May 2012 14:04, Xavier NOPRE wrote: > Hi Vincent, > > Thank you for your quick answer.

Requiring login to view console output

2012-05-09 Thread Tim Pizey
does not exist would it be a good candidate for my first plugin? cheers Tim -- Tim Pizey - http://pizey.net/~timp

Isolating Changelists in Jenkins

2012-05-16 Thread Tim Clemons
I'm looking for a best practices method of isolating changelists with Subversion so that each triggered build in Jenkins only consists of a single revision. The idea is to make it easier to isolate which build change breaks the build. Is there a plugin that provides this functionality?

Re: DOUBT regarding people link on jenkins

2012-07-04 Thread Tim Pizey
Hi Sami, Thankyou for you clear explanation. I would really like to see Committers and Users separated out. They are not necessarily both People. The Committer scavenging messes up my Users. cheers Tim On 4 July 2012 09:50, Sami Tikka wrote: > It depends. By default (= security is off)

Returning 404 rather than 403

2012-08-09 Thread Tim Pizey
) to the Jenkins top level url was issued, instead of both genuinely non-existant and unauthorised urls, as I find myself url editting quite a lot at the moment. cheers Tim PS Should this have been created in http://issues.jenkins-ci.org ? -- Tim Pizey - http://pizey.net/~timp

Build Flow Plugin firing rescues I don't think are needed

2014-03-06 Thread Tim Jackson
Given this flow: def Build = { "" + it + "" } def BVT2Rescue = { build("Restart_NRobotRemote", Test_Automation_Workstation: BVT2.build.properties['builtOnStr'], WORKSPACE: BVT2.build.workspace) build("BVT_CR2600", BN2: Build(B2.build.number)) } def BVT4Rescue = { build("Restart_NR

Re: Installing Jenkins into a specific directory on Windows using msiexec

2014-03-06 Thread Tim Bradt
I works now as of 1.553 using the Windows native package. -- 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. For more

Re: Installing Jenkins into a specific directory on Windows using msiexec

2014-03-06 Thread Tim Bradt
It works now as of 1.553 using the Windows native package. -- 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. For mor

Git with GItHub Pull Request Builder

2014-03-08 Thread Tim Heckman
essages in the logs as to why this is happening. For some reason it's just not aware that it has tested that build already. Has anyone seen this weird behavior and know of a workaround? Cheers! -Tim -- You received this message because you are subscribed to the Google Groups "Jenk

Re: Install instructions for Ubuntu don't work for 14.04

2014-03-10 Thread Tim Heckman
You're insulting the entire Debian project based on someone else's experience from an Ubuntu alpha release? I'm betting this is more or less a package issue with an Alpha piece of software. A bug report should be filed with Canonical so it gets fixed before release. -Tim On M

Re: Build Flow Plugin firing rescues I don't think are needed

2014-04-10 Thread Tim Jackson
the Rescue. The way it is set up is basically an ignore() with another build job listed below it. On Thursday, March 6, 2014 9:40:43 AM UTC-7, Tim Jackson wrote: > > Given this flow: > > def Build = { "" + it + > "" } > > def BVT2Rescue = { > bui

configure PEP8

2014-04-23 Thread Tim Mundt
nkins. When I su into a jenkins shell and execute pep8 manually, it respects the setting. I have seen other projects put their setting into the project root, so what am I missing here? Regards Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users&

Re: New build flow seems to break many things

2014-04-30 Thread Tim Jackson
itself, thus changing the results. I am more apt to just dump the build flow plugin and find a more suitable method. It is very disappointing to have functionality removed. A lot of us have based large amounts of work on what it did. - Tim On Friday, April 18, 2014 10:13:26 AM UTC-6, Greg

Re: Bugzilla

2014-05-01 Thread Tim Jackson
ble use of an Admin level Bugzilla account that would, theoretically, show bug details in a tool tip or status bar. I have not seen it work. This plugin is no longer in development, but could be taken over by someone to continue. Tim On Thursday, May 1, 2014 5:55:25 AM UTC-6, Mallepally San

install jenkins source no incoming access

2014-05-03 Thread Tim Dunphy
Jenkins from source on a host that has no incoming access from the net. So my question is, are there any instructions out there regarding how to do this? Thank you, Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To u

Re: install jenkins source no incoming access

2014-05-03 Thread Tim Dunphy
's an F5 acting as both a firewall and load balancer. Tho we won't need the load balancing capabilities for Jenkins. So if I read you correctly, we should be OK with outgoing, but no incoming access to run it. And to install it, the java -jar method should be fine?!? Thanks Tim On Sa

jabber plugin - not sending when project created with jenkins-cli

2014-06-18 Thread Tim Williams
s http://jenkins.example.com/ create-job bar < foo.xml build bar and no notifications, configure->save bar and now notifications work. Any tips/workarounds are appreciated... Thanks, --tim relevant versions; Jenkins 1.437 Jabber notifier plugin 1.22 instant-messaging plugin 1.21 -- You

SSH Plugin - "Cannot Connect to server" but credentials are correct.

2014-07-20 Thread Tim Myerscough
g username/password authentication. On the remote machine, I receive the following error message: Jul 21 10:31:49 sshd[36671]: error: Received disconnect from XX.XX.XX.XX: 3: com.jcraft.jsch.JSchException: Auth fail [preauth] How can I investigate this further? Thanks Tim -- You received th

Re: SSH Plugin - "Cannot Connect to server" but credentials are correct.

2014-07-20 Thread Tim Myerscough
I've found a solution by configuring an SSH Keyfile. Has anyone else experienced issues with username/password authentication issues with the SSH Plugin? On Monday, 21 July 2014 10:33:22 UTC+8, Tim Myerscough wrote: > > Hi, > > I'm trying to connect to a Mac from a

Re: SSH Plugin - "Cannot Connect to server" but credentials are correct.

2014-07-21 Thread Tim Myerscough
No, all characters are within the ASCII range. On 21 July 2014 15:50, Stephen Connolly wrote: > Does the password contain any non-ASCII (i.e. outside the range 32-127) > characters? > > > On 21 July 2014 03:58, Tim Myerscough > wrote: > >> I've found a soluti

Can I run a forked test on a slave?

2014-10-27 Thread Tim Myerscough
Hi, I have a Maven project to run a suite of integration tests. I am currently using the failsafe-plugin and forking the build to run the tests in parallel, running 5 threads. I would like to increase the thread count but am currently close to the physical memory limits of the machine. I cou

Blocked Sign-Up to Jenkins JIRA

2014-12-17 Thread Tim Benke
ontact jenkinsci-...@googlegroups.com What to do? Regards, Tim Benke -- 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...@goog

Re: Blocked Sign-Up to Jenkins JIRA

2014-12-17 Thread Tim Benke
> mentioned in the message. > > On 12/17/2014 11:09 AM, Tim Benke wrote: > > Hello, > > I'd like to comment on a jenkins plugin JIRA issue > <https://issues.jenkins-ci.org/browse/JENKINS-21221>, but JIRA doesn't > accept new registrations with the mess

Re: Blocked Sign-Up to Jenkins JIRA

2014-12-17 Thread Tim Benke
Well, I managed to sign up from home. I wonder how my respectable IT company ended up on any "spam" list On Wed, Dec 17, 2014 at 7:49 PM, Tim Benke wrote: > > Yes, I should have clarified that I've already tried that: > > https://groups.google.com/forum/#!s

Using Jenkins to server up maven repository

2014-12-27 Thread Tim Dudgeon
to do this? (note: my builds are mostly Gradle based and multiple builds copy files to the same repo). Tim -- 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

jenkinsci/nested-view-plugin - Maintained?

2016-02-02 Thread tim . birkett
releasing new versions of the plugin as necessary? Thanks, Tim Birkett -- 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-user

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

2016-04-22 Thread Tim Mills
I'm investigating this solution and I'm curious if you know if RDPing into the box will cause bad things to happen? My experience has been that the dongle doesn't work for RDP users and each time I RDP into the box I have to re-enter the password by logging into a local session. I'm worried th

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

2016-04-22 Thread Tim Mills
require the password to be re-entered. I spoke to the vendor (Safenet) and they said RDP is not supported and it was intentionally done for security purposes. On Fri, Apr 22, 2016 at 3:20 PM, Tim Mills <mailto:tmi...@citystateentertainment.com>> wrote: I'm investigating

SBT plugin configuration section missing

2016-05-18 Thread Tim Nelson
if they're related: https://gist.github.com/eltimn/346f824afd1a2e28012fb9dce18df918 Thanks, Tim -- 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-

Re: jenkins 2 with default set of plugins

2016-05-24 Thread Tim Walshjamin
See https://wiki.jenkins-ci.org/display/JENKINS/Plugins#Plugins-Byhand for information on how to install plugins manually. On Tuesday, May 24, 2016 at 9:56:28 AM UTC-4, christoph...@inria.fr wrote: > > Hello, > > Jenkins 2.x comes with a configuration step to install plugins. > Is there a bundle

I get this Null Pointer Exception on about 10% of my windows jobs

2016-06-07 Thread Tim Jackson
the node agent being >unresponsive/unavailable at the exact moment Jenkins is trying to launch a >task. Does that sound reasonable? Thanks for the input, Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from thi

Re: How to use podTemplate in a declarative pipeline with the kubernetes-plugin.

2018-01-03 Thread Tim Zhukov
Hey All, Is volume support still in development? I would like to use declarative syntax with k8s plugin, but our agent containers share persistence across pod with volume mounts. -- Best Tim Zhukov On Friday, September 22, 2017 at 12:11:28 PM UTC-4, Vincent Heet wrote: > > Hi Chris,

Re: How to use podTemplate in a declarative pipeline with the kubernetes-plugin.

2018-01-08 Thread Tim Zhukov
e node and such, I was wondering if anyone has had experience with this. -- Best Tim Zhukov On Thu, Jan 4, 2018 at 1:22 PM, Vamsi krishna wrote: > Hello all > > Local headers refused by remote: Authorization failure > Jan 04, 2018 6:13:25 PM hudson.remoting.jnlp.Main$CuiListe

Re: How to use podTemplate in a declarative pipeline with the kubernetes-plugin.

2018-01-09 Thread Tim Zhukov
There was a suggestion to contact docker on the host via docker API and forgoing socket altogether. I've done that manually a few times, but I'm not sure how to setup against CoreOS on tectonic. Altogether it seems like the safest solution, but also the most involved. -- Tim On Tue, J

Is there a plugin to limit the number of Jenkins jobs running?

2018-03-30 Thread Tim Baron
Hello, is there a plugin to limit the number of Jenkins jobs (more precisely pipeline jobs) currently running on Jenkins in total (master+slaves)? Thanks Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

RE: Is there a plugin to limit the number of Jenkins jobs running?

2018-03-31 Thread Tim Baron
likes to. Does somebody have a different suggestion? Or perhaps I need to discuss the idea with the author of the throttling builds plugin. Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: Is there a plugin to limit the number of Jenkins jobs running?

2018-03-31 Thread Tim Baron
a node. Tim -- 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

Re: Pipeline Model Definition from within a global shared library?

2017-03-09 Thread Tim Downey
Closing the loop on this in case it helps out someone else. This is not currently possible. See JENKINS-42224 <https://issues.jenkins-ci.org/browse/JENKINS-42224> for more info. Thanks Andrew Bayer for letting me know. On Wednesday, March 8, 2017 at 3:11:31 PM UTC-5, Tim Downey wrote:

How to reference the node parameter from the active choices reactive parameter

2017-03-14 Thread Tim Henderson
I basically want to drive a set of choice parameters based on the slave node parameter choice. I tried to use the active choices reactive plugin to point to the node choice like this: if (Node.contains("name_of_slave_node")) { return ["you_chose_slave_node"] } else { return ["mast

Dynamic Parameter to Build without Active Choices Plugin

2017-05-17 Thread Tim Downey
27;ve been looking through the Job DSL apis and don't see any other way to produce a dynamic list of parameters, but I hope that I'm missing something. Can anyone respond if there's another way to do this? Thanks, Tim -- You received this message because you are subscribed to the Goog

Re: GitHub and Bitbucket branch source UI refactoring

2017-08-03 Thread Tim Downey
Hi Michael -- I finally go around to upgrading as well and am facing the same problem. Have you worked around this? Are you just supplying the XML directly? On Tuesday, July 11, 2017 at 8:39:29 PM UTC-4, Michael Kobit wrote: > > Finally got some time to try it out (sorry!) and I know the PR ha

Possible regression from JENKINS-32326?

2016-08-23 Thread Tim Downey
o get to the internet. Am I understanding correctly that the slave should be picking up the proxy settings from the master? If so, is it supposed to be picking it up from the preferences in the Manage Plugins panel? Is it supposed to be somewhere else. Thankshopefully I'm missing

Re: Possible regression from JENKINS-32326?

2016-08-23 Thread Tim Downey
st 23, 2016 at 3:31:42 PM UTC-4, Daniel Beck wrote: > > > > On 23.08.2016, at 20:31, Tim Downey > > wrote: > > > > Am I understanding correctly that the slave should be picking up the > proxy settings from the master? If so, is it supposed to be picking it up >

remote access api and curl

2016-09-14 Thread gessner . tim
x27;MyToken' --data-urlencode json='{ ... }' and I want to replace the json='{...}' with a variable as in json=$Params where my json string is '{"parameters": [{"name":"USER", "value":"Tim"}]}' This json string wo

Re: remote access api and curl

2016-09-14 Thread gessner . tim
ST $Server -d token='MyToken' --data-urlencode json='{ > ... }' and I want to replace the json='{...}' with a variable as in > json=$Params where my json string is '{"parameters": [{"name":"USER", > "value":&

Re: remote access api and curl

2016-09-14 Thread gessner . tim
More progress - I changed buildWithParameters to just build and it seems to work. No to replace strings with variables in the JSON string Tim On Wednesday, September 14, 2016 at 7:50:57 AM UTC-7, gessn...@gmail.com wrote: > > > > down votefavorite > <http://stackover

Re: The new Global Pipeline Library

2016-09-21 Thread Tim Downey
Hellojust giving this thread a bump as I'm having the same questions. What exactly is supposed to be the configuration for Modern SCM? I have been able to get it to work using the Legacy SCM to point at my git repo. On Monday, September 12, 2016 at 3:48:02 AM UTC-4, Sverre Moe wrote: > > T

Node Build History

2016-10-31 Thread Tim Webster
Hi, We've set up a number of Pipeline builds on Jenkins, and for some reason none of the jobs are showing up in the Node build history (although non-pipeline jobs do). Is there something you need to do in the configuration or the Jenkinsfile to enable this? Thanks... -- You received this me

Re: Node Build History

2016-11-01 Thread Tim Webster
Hi Rachel, I went to create the issue and saw this: https://issues.jenkins-ci.org/browse/JENKINS-38877 Looks like it's not going to be implemented (at least not in the same manner)...? On Tuesday, 1 November 2016 12:47:50 UTC, Rachel Moreno wrote: > > Hi Tim, > > Sorry, I me

Summary of changes build information

2016-11-04 Thread gessner . tim
hange list number and I would like more of the details. Any suggestions? Thanx Tim -- 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 jenk

Perforce plugin

2016-11-04 Thread gessner . tim
I see in the perforce plugin (P4 plugin) that the plugin can be used to perform changelist browsing. Is there a way to send the results in an email? Thanx Tim -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from

Bitbucket webhook triggering 2 builds at once

2016-11-14 Thread Tim Webster
Hi, For some reason, my Bitbucket webhooks are triggering 2 Jenkins builds at once in multibranch pipeline projects. One build will have a commit notification as the trigger, while the other one will have 'branch indexing' as the trigger (at least I think it's the trigger). Nothing has changed o

  1   2   >