Re: Polling multiple SCMs in a pipeline

2022-05-26 Thread Vincent Latombe
Hi, Polling is an option of the checkout step in pipeline -- https://www.jenkins.io/doc/pipeline/steps/workflow-scm-step/ (end of page) Vincent Le ven. 27 mai 2022 à 00:37, 'rsomas...@netflix.com' via Jenkins Users < jenkinsci-users@googlegroups.com> a écrit : > Hi! > > I see the recommendatio

Re: Kubernetes plugin - container is not valid for pod

2020-09-25 Thread Vincent Latombe
Try changing your Jenkinsfile to: podTemplate( containers: [ containerTemplate(name: 'docker', image: 'docker:19.03', ttyEnabled: true, command: 'cat'), containerTemplate(name: 'nodejs', image: 'node:12-buster', ttyEnabled: true, command: 'cat') ], volumes: [hostPathVol

Re: Kubernetes Plugin: How to run commands within agent container as non-root?

2020-09-15 Thread Vincent Latombe
endstraße 1-14 | 12459 Berlin > > Geschäftsführer > M.-O. Brammann | R. Bönick | A. Thun > Amtsgericht Berlin-Charlottenburg > HRB 41 448 | USt-ID-Nr. DE 137228225 > > www.irisgmbh.de > > > ---------- > *From:* jenkinsci-users@googlegroups.com [je

Re: Kubernetes Plugin: How to run commands within agent container as non-root?

2020-09-11 Thread Vincent Latombe
> [Pipeline] container What is your container definition? I really doubt it is the same image as what you're running through docker CLI. Vincent Le jeu. 10 sept. 2020 à 19:59, iris Jasper Orschulko < jasper.orschu...@irisgmbh.de> a écrit : > I am trying to run a Pipeline in a Kubernetes agent,

Re: [kubernetes-plugin | casc ] Different behaviour between declarative and casc configuration ?

2020-09-09 Thread Vincent Latombe
(this is rather a question for Jenkins Users) This smells like a bug. Please open a jira issue with a reproducer. Vincent Le mer. 9 sept. 2020 à 10:32, aben...@redhat.com a écrit : > Hi Jenkins-Dev, > > I am trying to port a configuration of the kubernetes-plugin between > servers and I was f

Re: JAVA_OPTS in jenkins k8s deployment, does not seem to take into account -Xss (stack size)

2020-08-14 Thread Vincent Latombe
JAVA_OPTS is being passed only to the java process running Jenkins. If you run blindly java in the same container, it won't pick up any of the arguments you specified unless you explicitly pass it JAVA_OPTS. Vincent Le jeu. 13 août 2020 à 15:38, Pantelis Karamolegkos a écrit : > In my jenkins

Re: Jenkins Kubernetes plugin - scheduling hangs when there are more than 1000 builds in queue

2020-06-08 Thread Vincent Latombe
Set up a logger on package org.csanchez.jenkins.plugins.kubernetes to get more details about the provisioning. The NodeProvisioning system properties suggested above are not necessary (the plugin has its own implementation of NodeProvisioner.Strategy which bypasses the built-in clock) Vincent L

Re: Integrating Jenkins with EKS Cluster

2019-09-06 Thread Vincent Latombe
--- > Regards, > Junaid > > > On Fri, Sep 6, 2019 at 10:32 AM Vincent Latombe > wrote: > >> You can provide a kubeconfig file as credentials. You'll >> need aws-iam-authenticator set up on the EC2 instance you have Jenkins >> installed on, as well as run

Re: Why does my pipeline have 2 workspaces?

2019-09-06 Thread Vincent Latombe
@N (where N is an integer) is for concurrent builds, or concurrent node blocks using the same node within the same pipeline build, if you have nodes with multiple executors. @script is for pipeline remote execution engine (as noted above, this is where temporary shell scripts are created before bei

Re: Integrating Jenkins with EKS Cluster

2019-09-06 Thread Vincent Latombe
You can provide a kubeconfig file as credentials. You'll need aws-iam-authenticator set up on the EC2 instance you have Jenkins installed on, as well as running your EC2 instance with an instance profile with the ability to log in to your EKS cluster. Out of curiosity, why don't you run your Jenki

Re: Git Plugin checking out mystery commit

2019-09-06 Thread Vincent Latombe
Hi, you're probably using a strategy that is merging your branch with master before building. Not sure what you use there but I would recommend you to review the git configuration in your job. Vincent Le jeu. 5 sept. 2019 à 00:06, Shaun McArthur a écrit : > This is happening more often than I

Re: message "You have data stored in an older format and/or unreadable data." after Groovy init script

2018-10-01 Thread Vincent Latombe
Seems to be caused by some weird logic in this class if there is no configuration yet. https://github.com/jenkinsci/jenkins/blob/master/core/src/main/java/jenkins/model/JenkinsLocationConfiguration.java#L67-L83 So it means you don't have any configuration set for jenkins.model.JenkinsLocationConf

Re: Install wildcars ssl certs in opensource Jenkins ver. 2.121

2018-09-25 Thread Vincent Latombe
Hi, See https://wiki.jenkins.io/display/JENKINS/Starting+and+Accessing+Jenkins *> Using HTTPS with an existing certificate* If you still can't achieve it, please post more details about what you have tried, and how it failed, so that we can help. Regarding your message, Please suggest the ste

Re: pod inter connections inside k8s cluster

2018-09-19 Thread Vincent Latombe
Why do you use 2 different pods? Would be much simpler with a single one. Vincent Le mar. 18 sept. 2018 à 23:22, Tristan FAURE a écrit : > thank you for your answer, You were right about the plugin I used ( > ttps://github.com/jenkinsci/kubernetes-plugin/blob/master/README.md >

Re: What version of Jenkins was stage blocks introduced?

2017-01-27 Thread Vincent Latombe
See https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Stage+Step+Plugin Vincent 2017-01-27 14:32 GMT+01:00 Mark Allison : > I am building some pipeline projects and want to use the new stage blocks > feature as the old way is now deprecated. > > e.g. > > stage ('build') { > // my block of cod

Re: Accessing the checked out sources when using GitHub Organization Folder plugin

2016-11-03 Thread Vincent Latombe
You can just use "checkout scm" where you need them. Vincent 2016-11-03 15:14 GMT+01:00 Ullrich Hafner : > When using the GitHub Organization Folder plug-in Jenkins checks out > automatically the sources of my project. However, in the corresponding > Jenkinsfile these sources are not visible, th

Re: pipeline: Is there a plugin to give a "better console"??

2016-10-21 Thread Vincent Latombe
Did you give a try to Blue Ocean? https://jenkins.io/projects/blueocean/ Vincent 2016-10-21 14:01 GMT+02:00 Jonathan Hodgson : > > > On Thursday, October 20, 2016 at 5:02:34 PM UTC+1, Trever wrote: >> >> This plugin advertises to allow collapsing sections of the console >> https://wiki.jenkins-c

Re: Can I add a "publish" button to a build page

2016-07-12 Thread Vincent Latombe
You could use an input step ( https://jenkins.io/doc/pipeline/steps/pipeline-input-step/#code-input-code-wait-for-interactive-input) to require manual validation. Wrap it in a timeout https://jenkins.io/doc/pipeline/steps/workflow-basic-steps/#code-timeout-code-enforce-time-limit to clean-up pendin

Re: withCredentials not working in multibranch project?

2016-06-25 Thread Vincent Latombe
Use ${env.SETTINGS_LOCATION} in your groovy string. Vincent 2016-06-24 21:29 GMT+02:00 Matias Montes : > I am at this exact same point trying to figure it out, but it looks like > this simply cannot be done at the moment :( > > El viernes, 10 de junio de 2016, 9:56:42 (UTC-3), Michael Irwin esc

Re: Protecting Jenkins from its own pipelines and jobs

2016-03-31 Thread Vincent Latombe
My two cents : * Set executors number on master to 0 and run jobs only on slaves. That prevents anyone without admin access to your master to screw it. * If you're still afraid to screw your slaves, use one-off slaves using one of the Cloud implementations (using VMWare, Docker, or any other solut

Re: Developing plugin that doing something (run some methods) after build of any job

2016-03-27 Thread Vincent Latombe
Note that this discussion rather belongs to jenkinsci-dev. Vincent 2016-03-27 18:17 GMT+02:00 Vincent Latombe : > RunListener > <http://javadoc.jenkins-ci.org/hudson/model/listeners/RunListener.html> > is the extension point you're looking for. > > Vincent > >

Re: Developing plugin that doing something (run some methods) after build of any job

2016-03-27 Thread Vincent Latombe
RunListener is the extension point you're looking for. Vincent 2016-03-27 17:42 GMT+02:00 Barak Katz : > Hi, > I want to develop a plugin that will run some methods after a build of any > job automatically. > Someone can hel

Re: Jenkins 2.0 alpha release available

2016-03-26 Thread Vincent Latombe
You need the corresponding plugin installed ( https://wiki.jenkins-ci.org/display/JENKINS/Email-ext+plugin). It is mentioned in the documentation but it could be worth adding a link. Vincent 2016-03-26 19:02 GMT+01:00 David Karlsen : > Hm - I followed those links and found > https://jenkins.io/d

Re: Jenkins Pipeline/Workflow node name as variable

2016-03-19 Thread Vincent Latombe
Use double quotes if you want expressions resolved. Vincent 2016-03-17 13:23 GMT+01:00 Frank Hask : > Hi all, i am building pipeline on my project that uses 5 DB servers. > > So based on build variable i want to set node name. Like this.. > > env.NODE = 'blabla' > > > node('${NODE}') { > //som

Re: Base Clearcase issues

2016-03-08 Thread Vincent Latombe
Please create a new thread instead of replying to an existing one. Vincent 2016-03-08 13:34 GMT+01:00 Tilakraj Moger : > Hi All, > > i have problem using clearcase plugin, i am getting below problem > *Building in workspace C:\Users\\jobs\Testing_Build\workspace* > *[WARNING] config spec is empt

Re: Jenkins Git Plugin and Maven Release Builds

2016-01-06 Thread Vincent Latombe
If you use Eclipse, make sure you do a clean build in maven. Not doing so will result in odd failures with all things related to annotation processing, such as the error message you are getting. Vincent 2016-01-06 17:22 GMT+01:00 Mark Waite : > I had a friend at the office compile the master bra

Re: Provide LTS 1.609.4 with security updates from 1.625.2 ?

2015-11-24 Thread Vincent Latombe
Hi Guido, the community maintains the LTS line for 12 weeks and this is already a time-consuming operation on volunteers time. Here are the options I see available for you : - Migrate your jobs out of the maven job type. It has been pointed out too many times on this ML how 'evil' it is. - If you

Re: Maven settings.xml from a URL

2015-10-15 Thread Vincent Latombe
Hi, What you are looking for is Parametrized Trigger plugin + NodeLabel Parameter plugin, using https://wiki.jenkins-ci.org/display/JENKINS/NodeLabel+Parameter+Plugin#NodeLabelParameterPlugin-BuildParameterFactory Vincent 2015-10-15 23:47 GMT+02:00 Justin : > We run our Jenkins nodes with a ser

Re: Multiple or No Plugin Versions

2015-10-15 Thread Vincent Latombe
The version dumped in the config.xml is there only to record the version that was installed when the save occurred. It doesn't have to be the same as the version that is currently installed. HTH, Vincent 2015-10-15 13:40 GMT+02:00 Eric Naitove : > We are bringing up a new Master Jenkins. Conso

Re: Using Jenkins to publish tar.gz to Nexus

2015-10-15 Thread Vincent Latombe
Hi Jason, your questions are related to Maven usage, and they were kindly answered by other folks in the other thread (even if this should be a thread on the maven-users mailing list). The only thing that may be Jenkins-specific is that Jenkins provides you with an environment variable BUILD_NUMBE

Re: Workflow question vs. pipelines

2015-10-12 Thread Vincent Latombe
; filter_builds_that_are_bigger_buildnumber_than_us(builds); > def builds_itu = > filter_only_items_passed_stage_ConsiderITU(later_builds); > return ( builds_itu == 0 ); > > } > } > } > > > > > > > > > > On Mon, Oct 12, 2015 a

Re: Workflow question vs. pipelines

2015-10-12 Thread Vincent Latombe
Hi Nigel, as far as I understand your statement, I think the multibranch-workflow plugin (currently in beta) could help. I'd get the current branch and only run the ITU stage only if it's currently working on master. Vincent 2015-10-12 13:05 GMT+02:00 Nigel Magnay : > I'm migrating a lot of fa

Re: Get build status info along with url , and build number from JSON API

2015-10-12 Thread Vincent Latombe
Hi Bhupendra, I've copied the Jenkins Users mailing list, the Dev mailing list isn't suited for your question. Try adding ?depth=1 to your url, you'll retrieve more infos about builds. Make sure you read the API help page available at *http://:8080/jenkins/view//job/validation__cmd/api/.* Vi

Re: Jenkins ClearCase plugin - View Line Endings

2015-09-24 Thread Vincent Latombe
Hi, there is nothing in the Clearcase plugin related to this option, but there is the possibility to specify custom mkview parameters in the advanced section. Vincent 2015-09-24 17:20 GMT+02:00 Andriy Smetana : > Hi Jenkins Users, > > I encountered one problem with ClearCase plugin, not sure ho

Re: What am I missing?

2015-07-27 Thread Vincent Latombe
Just a wild guess, but try to prepend ${project.basedir}/ to src/main/java. Jenkins usually launches mvn using mvn -f whereas in local you usually launch maven directly in the project directory. Vincent 2015-07-27 19:30 GMT+02:00 Ade : > Maven, any ideas? > > On Friday, 24 July 2015 07:50:28 U

Re: External access to the files in the middle of the build

2015-06-25 Thread Vincent Latombe
Hi, you could use the workspace access through /ws/filepath if it is feasible for you to grant public access to the job workspace. Vincent 2015-06-24 13:13 GMT+02:00 : > Hello, > > is there a documented/supported (!) way how to access files created by the > job in the middle of the build? As pa

Re: Fixing TCP port for JNLP slave agents from command line

2015-06-25 Thread Vincent Latombe
Hi, this can be configured under Manage Jenkins > Configure global security. Vincent 2015-06-25 10:42 GMT+02:00 Anthony Green : > Is it possible to fix the TCP port for JNLP slave agents from command line? > I'm trying to automated the installation and configuration of Jenkins, in > a Docker co

Re: Jenkins git-plugin Question for Console Output

2015-06-22 Thread Vincent Latombe
orgot to include that. I have outlined in green the > only output that we would like to have in the log, everything else is > somewhat not necessary. Thanks! > > On Sat, Jun 20, 2015 at 3:50 AM, Vincent Latombe < > vincent.lato...@gmail.com> wrote: > >> Hello

Re: Trigger a script every time a new build comes

2015-06-20 Thread Vincent Latombe
Hello, I'm not sure to understand exactly your question, but have you given a try to https://wiki.jenkins-ci.org/display/JENKINS/FSTrigger+Plugin ? Vincent 2015-06-20 10:58 GMT+02:00 Arun Bhosale : > Hi, > > I have started using Jenkins recently. With my Jenkins setup(from Windows > server) i

Re: Jenkins Safe Restart

2015-06-20 Thread Vincent Latombe
migrating to new architecture in Jenkins would be > sometime. > > On Saturday, June 20, 2015 at 11:55:51 AM UTC+1, Vincent Latombe wrote: >> >> Hello, >> >> do you have strong constraint to run Jenkins on top of Tomcat? I think it >> would be much simpler for you if

Re: Jenkins Safe Restart

2015-06-20 Thread Vincent Latombe
Hello, do you have strong constraint to run Jenkins on top of Tomcat? I think it would be much simpler for you if you just run Jenkins with the embedded container and the service wrapper. Vincent 2015-06-20 12:35 GMT+02:00 capt edgar : > Hi Richard > > I'm a newbie to Jenkins so did some invest

Re: Blocking builds on node basis

2015-06-20 Thread Vincent Latombe
Hello, I believe https://wiki.jenkins-ci.org/display/JENKINS/Throttle+Concurrent+Builds+Plugin is exactly what you are looking for :) Vincent 2015-06-20 12:43 GMT+02:00 Viktor Svensson : > Is there any plugin or way to block multiple builds of a specific job on a > node basis. > At this time I

Re: Jenkins git-plugin Question for Console Output

2015-06-20 Thread Vincent Latombe
Hello, could you give some example of these output? Vincent 2015-06-20 0:58 GMT+02:00 : > Hey there, > > Was told by the developers that someone here might be able to assist me in > a question that I have. So, I have confirmed through the developers that > the git-plugin itself is causing Jenki

Re: 'mvn.bat' is not recognized as an internal or external command

2015-06-09 Thread Vincent Latombe
If you run maven 3.3.x the wrapper is named mvn.cmd now, I don't think the mvn build step has been updated accordingly. Use mvn 3.2.x or use the regular batch command line as a workaround. Vincent 2015-06-09 18:20 GMT+02:00 Slide : > Did you setup the Maven information in the global config? Also

Re: Clearcase plugin

2015-05-13 Thread Vincent Latombe
t; from Clearcase server. > > > Regards, > > Mohamed Sathack > > > On Monday, 6 April 2015 22:33:41 UTC+5:30, Vincent Latombe wrote: >> >> Hi Mohamed, >> >> Before even considering working with clearcase and Jenkins, I'd recommend >> you to G

Re: Clearcase plugin

2015-04-06 Thread Vincent Latombe
Hi Mohamed, Before even considering working with clearcase and Jenkins, I'd recommend you to Google around or get a basic Clearcase training from one of your administrators. This should get you started. Regards, Le lun. 6 avr. 2015 15:34, Mohamed Sathack a écrit : > Hi, > > I am working on Bui

Re: JENKINS REST API: queue service responds “404 not found”

2015-03-20 Thread Vincent Latombe
Hi, this is a known issue, see https://issues.jenkins-ci.org/browse/JENKINS-27256 Vincent 2015-03-20 14:24 GMT+01:00 Albert Battle : > I am using the latest JENKINS version 1.605. > > I start a job by issuing /POST /jenkins/job/jobName/build > > I receive a location header Location: http://{hos

Re: Upgrading Matrix Project Plugin to 1.4 .1 from 1.4 crashes with class not found errors - was RE: Borked my jenkins doing a plugin update

2015-02-28 Thread Vincent Latombe
Hi, A good habit is to check the release notes before updating. on https://wiki.jenkins-ci.org/display/JENKINS/Matrix+Project+Plugin Version 1.4.1 (Feb 27, 2015) Bundled in 1.596.1 and 1.600. *Do not update to this release*; it will be removed from the update center (INFRA-250). If you have alre

Re: Workflow Plugin - Performing a Release

2015-02-26 Thread Vincent Latombe
Filed https://issues.jenkins-ci.org/browse/JENKINS-27152 Vincent 2015-02-26 21:23 GMT+01:00 Jesse Glick : > On Thursday, February 26, 2015 at 1:11:23 PM UTC-5, Vincent Latombe wrote: >> >> Couldn't this be stored directly in a specific metadata folder outside

Re: Configure Project is ALWAYS crashing

2015-02-26 Thread Vincent Latombe
Hi, this seems to come from a bug from the Exclusion plugin (judging from the stacktrace). Vincent 2015-02-26 21:06 GMT+01:00 John Lussmyer : > This just started today, and I have no idea what is causing it. > Whenever I click on Save from Configure Project, I get this exception: > (and my chan

Re: Workflow Plugin - Performing a Release

2015-02-26 Thread Vincent Latombe
2015-02-26 19:10 GMT+01:00 Vincent Latombe : > As I understand it, this id is a hash of the workspace path already. > Actually some kind of uuid, after a second read ;) -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsub

Re: Workflow Plugin - Performing a Release

2015-02-26 Thread Vincent Latombe
As I understand it, this id is a hash of the workspace path already. IMO this is not something that should be exposed to the workspace (as the control files are something Jenkins-internal), Couldn't this be stored directly in a specific metadata folder outside of any workspace? Vincent 2015-02-26

Re: sudo: no tty present and no askpass program specified

2015-02-23 Thread Vincent Latombe
Hi, you should google for "sudo prompt" and read the first link ;) Vincent 2015-02-23 14:49 GMT+01:00 Rupa Lahiri : > I want to execute sudo service tomcat7 stop and sudo service tomcat7 start > in shell script > > I get - sudo: no tty present and no askpass program specified > What should I do

Re: [workflow-plugin] bug? using build parameters to skip builds steps

2015-02-19 Thread Vincent Latombe
No, it is how the groovy truth is defined. See http://docs.codehaus.org/display/GROOVY/Groovy+Truth Non-empty strings are coerced to true, even if the value is "false". Vincent 2015-02-20 6:11 GMT+01:00 Jos Backus : > But isn't that a bug? Why doesn't the surrounding code cast the parameter > to

Re: [workflow-plugin] bug? using build parameters to skip builds steps

2015-02-19 Thread Vincent Latombe
Remember that in groovy if ("false") { println("Hello world") } will indeed echo Hello world Use if (clean.toBoolean()) { sh "echo clean" } should work better for you. Vincent 2015-02-19 10:05 GMT+01:00 : > Hello, > > I would like to add a build parameter "clean" which is true by default

Re: Clearcase HOME

2015-02-19 Thread Vincent Latombe
Hi, sorry, the Clearcase plugin isn't compatible with the Clearcase Remote Client (CCRC) (I guess this is what you're calling the thin client). You should install the thick client. Please note that cleartool is only required on Jenkins slaves, not on the master (that is of course, if you are usin

Re: Problem running Python Script, infinite wait? (MS Windows)

2015-02-05 Thread Vincent Latombe
, 5 de febrero de 2015, 16:17:54 (UTC-3), Vincent Latombe > escribió: >> >> Hi, >> >> If *python test_Controller.py* runs graphical tests, then you cannot use >> the windows service (because services cannot access a graphical session). >> In that case you can u

Re: Problem running Python Script, infinite wait? (MS Windows)

2015-02-05 Thread Vincent Latombe
Hi, If *python test_Controller.py* runs graphical tests, then you cannot use the windows service (because services cannot access a graphical session). In that case you can use the jnlp client from an opened session. Vincent 2015-02-05 20:12 GMT+01:00 Maximiliano Santa Cruz : > Hello everyone, I

Re: Frustration with separating Maven build and test steps

2015-01-24 Thread Vincent Latombe
Hi Jeff, typically to solve this, I would add a qa profile to the maven project, which skips tests by default, then on the modules you want to run tests on, you un-skip the tests. Then the Jenkins part is just adding -Pqa to the maven list of options. Cheers, Vincent 2015-01-24 1:31 GMT+01:00

Re: Question about git polling & "nonexisting_workspace"

2014-08-27 Thread Vincent Latombe
Hi Terry, I believe options such as "Polling ignores commits in certain paths (path/to/version/file)" require you to poll using workspace. Vincent 2014-08-27 16:42 GMT+02:00 Dunnigan, Terrence J < terrence.j.dunni...@boeing.com>: > Hi all, > > > > I have a job that polls for changes. When I w

Re: [literate] feedback/questions

2014-08-21 Thread Vincent Latombe
Hi Baptiste, See my comments within your text. Thanks for your observations, this is much appreciated 😊 Cheers, Vincent Le 20 août 2014 18:06, "Baptiste Mathus" a écrit : > > Hi all, > > I've recently been playing with the Literate plugin. As the plugin is still young, I thought I'd drop some

Re: Build on the windows Jenkins slave is sometimes hanging.

2014-08-12 Thread Vincent Latombe
Hi, there seems to be a significant amount of threads related to Disk Usage plugin. This may be a cause of the hanging. I would recommend that you disable this plugin and see if the hanging persists. Vincent 2014-08-12 14:36 GMT+02:00 Jan Řezníček : > I have a slave with the Windows XP, where b

Re: User defined axis in literate plugin

2014-07-13 Thread Vincent Latombe
Hi Ruslan, it is not yet possible, but I have this feature in-house and I plan to open source it in the coming weeks. Cheers, Vincent 2014-07-13 11:07 GMT+02:00 Ruslan Baratov : > Hello, all! > > Is it possible to add a custom environment variable (i.e. user-defined > axis) to configuration f

Re: Problem with Clearcase plugin running many builds in parallel

2014-07-07 Thread Vincent Latombe
I just released 1.5.2 with the form fix. Vincent 2014-07-07 9:07 GMT+02:00 Sascha Herrmann : > Hi! > > Thanks. It seems to be just a thing of saving the setting. When I put the > "2" directly into the endViewDelay tag in the XML and then restart Jenkins, > then the delay is applied fine and I s

Re: Problem with Clearcase plugin running many builds in parallel

2014-07-04 Thread Vincent Latombe
Eh, if it comes back to 0, there must be an issue, I will check that back. Vincent 2014-07-04 17:00 GMT+02:00 Sascha Herrmann : > Hi! > > Version 1.5.1 doesn't work or I am doing it wrong. > > I set the delay to "2" in the settings, but when I come back to the > settings after saving, it's

Re: Problem with Clearcase plugin running many builds in parallel

2014-06-30 Thread Vincent Latombe
es after the build using a >> batch script as I mentioned previously. >> >> I will update the post with my findings. >> >> Thanks again. >> >> Sascha >> >> Am Montag, 30. Juni 2014 09:32:19 UTC+2 schrieb Vincent Latombe: >>> >>&g

Re: Problem with Clearcase plugin running many builds in parallel

2014-06-30 Thread Vincent Latombe
Hi Sascha, could you try the given build [1] and see whether you still encounter the issue? I have added a call to endview after the checkout. I believe it may also help with the delay you are observing when called initially (because it may be dependant on the number of active views on the host).

Re: Problem with Clearcase plugin running many builds in parallel

2014-06-23 Thread Vincent Latombe
Hi, the reason the endview is issued is to end any ongoing update process on that view (that may have been interrupted in a previous run, leaving clearcase in an unclean state). Maybe the reason setcs fails for you is because endview is still running behind and takes too much time? I'm surprised

Re: People using the LDAP plugin to connect to Active Directory

2014-05-31 Thread Vincent Latombe
Hi Stephen, just tested the new version with my Active Directory : authentication still takes forever. I think the new code you added is not even called during the authentication workflow, it goes straight to AuthoritiesPopulator implementations which use the member={0}. The logic looks good howev

Re: Jenkins Clearcase Plugin Not detecting changes and triggering continually on erroneous-ConfigSpec change detection

2014-05-21 Thread Vincent Latombe
I meant vob name (stupid phone) Le 21 mai 2014 10:46, "Vincent Latombe" a écrit : > Hi Phil, > > Your load rule is incorrect. Indeed it should be relative to the view > path, so start with the job name > Le 20 mai 2014 20:40, "Phil Lord" a écrit : > >&

Re: Jenkins Clearcase Plugin Not detecting changes and triggering continually on erroneous-ConfigSpec change detection

2014-05-21 Thread Vincent Latombe
Hi Phil, Your load rule is incorrect. Indeed it should be relative to the view path, so start with the job name Le 20 mai 2014 20:40, "Phil Lord" a écrit : > Vincent, > > Setting the view path per your suggestion improved things! Now the > lshistory command displays the changes that occurred (as

Re: Jenkins Clearcase Plugin Not detecting changes and triggering continually on erroneous-ConfigSpec change detection

2014-05-20 Thread Vincent Latombe
Hi Phil, when working with dynamic views, view path should be equal to the view tag. So instead of using m_, you should specify the same value as the view tag you specified above. Let me know if it works for you. Cheers, Vincent 2014-05-20 14:24 GMT+02:00 Phil Lord : > Hi, > > I'm experiencin

Re: SCM Polling fails: Cannot run program "cleartool"

2014-03-21 Thread Vincent Latombe
Hi, this is a fixed issue (https://issues.jenkins-ci.org/browse/JENKINS-14247). Vincent 2014-03-20 8:20 GMT+01:00 Amir Misgav : > > use full path to cleartool. > Example :"C:/Program Files/IBM/RationalSDLC/ClearCase/bin/cleartool.exe > > Amir > > -- > You received this message because you are

Re: Base ClearCase failed. exit code=1

2014-03-12 Thread Vincent Latombe
You must define a valid view storage directory. This is usually done in global configuration of the plugin but it can be overridden in the job configuration. Vincent 2014-03-12 20:01 GMT+01:00 Daniel Beck : > > On 12.03.2014, at 19:58, Chanda Norton wrote: > > > [intro2] $ cleartool mkview -sn

Re: Is it possible to have non editable execute shell for users?

2014-03-10 Thread Vincent Latombe
2014-03-10 13:28 GMT+01:00 Stephen Connolly : > [...] > * It would be super nice if Vincent can get his Yaml parser stuff > committed before 1.0 also so that people who don't like the markdown build > description can use the yaml based alternative (literate has always had a > "yaml" format... just

Re: Jenkins maven build issue

2014-02-04 Thread Vincent Latombe
Although I share some of Stephen's opinions about the Maven plugin for Jenkins, I don't think this is related to your issue. my guess is that the location of web.xml is manually configured in pom.xml since webapp\WEB-INF\web.xml is certainly not the standard path where to put web.xml in maven (by

Re: Captcha to log in

2014-02-02 Thread Vincent Latombe
Hi Christophe, at the moment the Captcha support is only implemented for the sign up page. I guess having it for the login page would require a development effort (shouldn't be a big effort though). Cheers, Vincent 2014-02-02 Christophe Gesché : > Hello, > > I want to enable a captcha on logi

Re: LTS 1.532.2 release date

2014-01-24 Thread Vincent Latombe
/JENKINS-20482 (config-file-provider > I need to see with domi) > > > > On Fri, Jan 24, 2014 at 10:58 AM, Arnaud Héritier wrote: > >> a bug in the project-stats-plugin plugin ? >> I didn't updated it for a long time. Last release : Sep 22, 2012 >> >&

Re: LTS 1.532.2 release date

2014-01-24 Thread Vincent Latombe
Hi Arnaud, >From the thread dump, it is pretty clear to me that it is caused by the plugin at hudson.plugins.projectstats.NumBuildsStats.compute(NumBuildsStats.java:52) at hudson.plugins.projectstats.column.NumBuildsColumn.getStats(NumBuildsColumn.java:53) which causes load of

Re: Jenkins can't connect to my Windows dumb slave

2014-01-21 Thread Vincent Latombe
you for your help! > > -Deniz > > > 2014/1/21 Vincent Latombe > >> I think I hit a similar issue while playing with latest core a few weeks >> back, so I think it is a regression at jenkins core level. I would >> recommend you to rollback to your previous jenkins

Re: Jenkins can't connect to my Windows dumb slave

2014-01-21 Thread Vincent Latombe
I think I hit a similar issue while playing with latest core a few weeks back, so I think it is a regression at jenkins core level. I would recommend you to rollback to your previous jenkins core version (and probably raise an issue for this to track the regression) Cheers, Vincent 2014/1/21 De

Re: Page load slow at 1st time but fast in 2nd time

2014-01-15 Thread Vincent Latombe
There are two directions : - increase the heap, that will allow Jenkins to keep more jobs/builds in memory (but this is not guaranteed) - try to remove some columns that may trigger useless load of all builds for a job Vincent 2014/1/15 dennys > I have hundred jobs and use view to separate the

Re: Customizing behavior of "Wipe out current workspace"

2014-01-15 Thread Vincent Latombe
Hi, I guess it is possible but requires implementation of a BuildWrapper. Then in the teardown part, you implement your custom logic and it can be executed whether the build is successful or failed. As for customizing the wipe out workspace action, it can be done only through SCM implementations,

Re: Combine one or more Trigger conditions

2013-12-12 Thread Vincent Latombe
Configure a daily polling at midnight, nous push hook Le 12 déc. 2013 14:30, "Erol KOCAMAN" a écrit : > Hi Rob, > > My problem is when selecting multiple build triggers, jenkins applies *OR > *case but I want *AND *case. > > On Thursday, 12 December 2013 14:34:56 UTC+2, Mandeville, Rob wrote: >>

Re: Move existing jobs into folders

2013-11-22 Thread Vincent Latombe
That should work by moving in filesystem. (the move feature is part of the Folders Plus plugin that is part of Jenkins Enterprise offer) Vincent 2013/11/22 Eric Wood > The only way I could figure it out was to actually move the job to the > folder in the underlying Jenkins file system and the

Re: Sharing my views

2013-11-15 Thread Vincent Latombe
All views you have created so far are public views. Anyone will see them. Vincent 2013/11/15 CLOSE Dave > I'm a bit confused by the "view" mechanism in Jenkins. > > I have created several additional views for my own use using the "+" on > the tab bar. When I click "My views" on the left menu,

Re: Unable to upgrade from 1.534 to 1.535 (and 1.536)

2013-10-24 Thread Vincent Latombe
Probably a side-effect of the switch from winstone to jetty for the embedded container. Maybe there is something in your system that prevents jetty from initializing properly? Vincent 2013/10/24 Federico Fissore > I have an year old jenkins installation that I manually start and update > downl

Re: Questions about changing installation port for Jenkins.war

2013-10-18 Thread Vincent Latombe
Hi, you should read https://wiki.jenkins-ci.org/display/JENKINS/Starting+and+Accessing+Jenkins Vincent 2013/10/18 > I am currently trying use Jenkins to trigger a UI-application to open when > Jenkins builds a project. So first I had to disable the Jenkins service > from the Services tool to

Re: HELP! Maven builds don't show error messages when run under Jenkins...

2013-09-23 Thread Vincent Latombe
See https://issues.jenkins-ci.org/browse/JENKINS-19352 Vincent 2013/9/23 Felix Riegger > Hi Vincent, > > we are on 1.531 now, but the problem is still present. Is there a ticket > to this problem? > > Kind regards, > Felix > > > On Saturday, August 24, 2013 8:5

Re: email-ext 2.34 not including sample templates

2013-09-19 Thread Vincent Latombe
Hi, i think there has been a change recently about how plugin are packaged. Check if there is a classes.jar under WEB-INF/lib in the plugin, you will probably find the templates there. Cheers, Vincent 2013/9/19 jaziniho > Hi, > > I've just downloaded and installed email-ext 2.34 on a recentl

Re: Jenkins failure when no tests failed

2013-09-17 Thread Vincent Latombe
Hi, this is probably yet another occurrence of https://issues.jenkins-ci.org/browse/JENKINS-19352 (since 1.526) . Try the same with a freestyle job. Vincent 2013/9/17 Farrukh Najmi > That is the crux of the problem. The summary table shows a failure when > nothing else in the log shows a fai

Re: Jenkins triggering mails but mails are not getting delievered

2013-08-27 Thread Vincent Latombe
Hi, I guess it is rather a problem with your mail server than with Jenkins. Vincent 2013/8/27 > Hi All, > > I have configured email-ext plugin in jenkins. > In the post-build action, the console shows that email has been triggered > to the recipient list, but the email arrives very very late,

Re: HELP! Maven builds don't show error messages when run under Jenkins...

2013-08-23 Thread Vincent Latombe
Hi Jeff, it's a bug introduced in core/maven-plugin a few versions ago. I think I saw a commit fixing it this week so it will released either with 1.530 or 1.531. If you are starting with Jenkins, I can only recommend you to install the LTS version rather than the latest version. This will avoid

Re: Automatic clearcase VOBs and branches in Jenkins

2013-08-21 Thread Vincent Latombe
Hi, feel free to poke around the source code for the clearcase plugin and submit a pull request that implements your requirement. I'll be able to review it. Honestly, I only use UCM Clearcase, so I don't invest time into features that applies to Base. Cheers, Vincent Vincent 2013/8/21 Muhamm

Re: git plugin - pulling in pull requests from Stash

2013-08-12 Thread Vincent Latombe
Hi, I don't have all the settings in mind, but you need to tweak the refspec to achieve this. Also, it may be better to fetch refs/pull-requests/*/merge-clean because you'll always get a non-conflicting commit. Vincent 2013/8/11 John D. Ament > Hi > > We're playing around with git at work, an

Re: Readonly job parameters

2013-07-29 Thread Vincent Latombe
Hi, The environment variable BUILD_CAUSE already provides you how the build has been triggered. You don't need any plugin or parameter to get this information. Cheers, Vincent 2013/7/29 Benjamin Hofmann > My personal usecase would be to differ between an auto triggered build and > a manual b

Re: Critical problem with my Jenkins server

2013-07-25 Thread Vincent Latombe
looks good, however you should increase memory settings. Vincent 2013/7/25 Mehdi Hayani > I'm keeping 10 builds/ job, Do you think that this number needs to be > reduced ? > > -- > You received this message because you are subscribed to the Google Groups > "Jenkins Users" group. > To unsubscri

Re: strange heap space

2013-07-19 Thread Vincent Latombe
Hi, See [1] for a possible workaround (this is the one I use). Basically when using maven 3, you just have to prefix your deployment url with dav: (ex. dav:http://yourmavenserver). It will use the dav wagon instead of the default http one, which has the bad habbit of loading the full file in memor

Re: strange heap space

2013-07-19 Thread Vincent Latombe
Hi, Your memory problem is with maven JVM, not jenkins. Vincent Le 19 juil. 2013 12:09, "Raouf" a écrit : > > Hi there, > > I'm getting a java heap space that i can't really explain. i tried to increase the memory allocated to jenkins, but that doesn't change a thing > > The most strange thing,

Re: Github (enterprise) service hooks and Jenkins

2013-07-18 Thread Vincent Latombe
_ > Costin Caraivan > > > On Thu, Jul 18, 2013 at 1:04 PM, Vincent Latombe > wrote: >> Hi >> >> The git hook actually triggers the polling, not directly a build. >> >> Vincent >> >> >> 2013/7/18 Costin Caraivan : >>> Hello, >>

  1   2   >