Re: Consolidate the Downstream job emails

2019-08-26 Thread Arnaud bourree
What do you expect in your consolidated email? If job A calsl job B which calls job C, you can add email part parameter in job B and C. If job C knows that job A and B run before, it could fetch information from previous job's artefacts on simply gets jobs result. Le lun. 26 août 2019 à 19:03, sr

Re: Label for boolean entry fields moved to the right ?

2020-02-22 Thread Arnaud bourree
IMO, issue is label for Boolean is on right of checkbox and not on left as for other parameter types Le mer. 19 févr. 2020 à 16:05, Martin Jost a écrit : > Update 2 to my own post: > Unfortunately, this seems to be considered a feature, not a bug: > > Here are the Jenkins bug tickets on it I fo

Re: Label for boolean entry fields moved to the right ?

2020-02-24 Thread Arnaud bourree
have to jump > between looking to the left or the right of the item, instead of having the > labels arranged on the left in one vertical line. > Did I miss something ? Misunderstand your mail ? > > Martin > > Am Sa., 22. Feb. 2020 um 11:10 Uhr schrieb Arnaud bourree < > arn

Re: Jenkins Terminology Poll for ‘master’

2020-07-21 Thread Arnaud bourree
We can see result, but how do we vote? Le mar. 21 juil. 2020 à 21:19, Mark Waite a écrit : > The Jenkins terminology poll > > for the “master” term replacement is open at > https://civs.cs.cornell.edu/cgi-bin/results.pl?id=E_

Re: Jenkins Kuberenet Plugin

2020-10-07 Thread Arnaud bourree
Hi, Could I suggest you to install at least Python 3.6 and not 3.3? Arnaud Le mar. 6 oct. 2020 à 23:05, david...@mycit.ie a écrit : > Hi All, > > Could do with some help with this one, I'm currently trying to use > Kubernetes to build containers for jobs that will run within Jenkins. I'm > cur

lock beforeAgent of main pipeline agent

2020-10-27 Thread Arnaud bourree
Hello, My Jenkins is running in a kubernetes cluster and all pipelines run in pod. I'd like to limit the number of pipelines running in parallel: I'd like an executor limitation like we have when we were running all pipelines in master. I'm using lockable resources plugin. My expecting implementa

Re: lock beforeAgent of main pipeline agent

2020-10-27 Thread Arnaud bourree
Jira issue created: https://issues.jenkins-ci.org/browse/JENKINS-64047 Le mar. 27 oct. 2020 à 11:17, Arnaud bourree a écrit : > Hello, > > My Jenkins is running in a kubernetes cluster and all pipelines run in pod. > I'd like to limit the number of pipelines running in para

Re: Cron Style Syntax for Overnight Builds for Non-Consecutive Hour Ranges

2012-11-08 Thread Arnaud bourree
Hi, You may put two lines to get two ranges My 2 cents Arnaud. 2012/11/8 Chris Wozny : > All, > > I'm wondering if anyone has come up with a syntax to stagger builds/poll SCM > with the 'H' syntax between hours which aren't technically in the same day. > I'd like to stagger builds between 10 pm

Re: Problem with apache, pam auth, and jenkins

2012-04-19 Thread Arnaud bourree
Hello, In your configuration, you defined access right for shared folder and no proxy rules I setup Apache in front of Jenkins servlet container by adding the following in httpd.conf: # Jenkins ProxyPass /jenkins http://localhost:8080/jenkins ProxyPassReverse /jenkins http://localhost:8080/jenkins

Buildflow vs Workflows plugins

2014-12-26 Thread Arnaud bourree
Hello, How to choose between build-flow and work-flow plug-in? Both made flow within DSL. I start with build-flow because I find sample for first. It looks that work-flow need git but I'm using hg :$ >From jenkins-users list, work-flow looks to be more alive What are your feedbacks about those tw

Re: Jenkinsfile to build 4 different docker images

2018-09-10 Thread Arnaud bourree
That is not matter of Jenkins file usage but docker command. On docker build you specify directory path or file path of Dockerfile. See docker man on docker.io Le lun. 10 sept. 2018 à 12:06, Vijay V a écrit : > Is it possible to build 4 different docker images using 4 Dockerfiles with > one Jenk

[kubernetes plugin] yamlFile libraryResource

2018-12-21 Thread Arnaud bourree
Hello, I'd like to move pod definition from pipeline to a file resource in a shared library. My pipeline is like: pipeline { agent none stages { stage('step-in-kubernetes') { agent { kubernetes { label 'kube' yaml

Re: [kubernetes plugin] yamlFile libraryResource

2018-12-21 Thread Arnaud bourree
I created issue https://issues.jenkins-ci.org/browse/JENKINS-55299 Le ven. 21 déc. 2018 à 14:18, Arnaud bourree a écrit : > Hello, > > I'd like to move pod definition from pipeline to a file resource in a > shared library. > > My pipeline is like: > pipeline { >

Re: Creating 2 pipelines in a single jenkinsfile

2019-01-10 Thread Arnaud bourree
Hi, Denis answer is good but why are you doing that? You said if pipeline #1 succeed, you run pipeline #2 which redo same steps including git checkout then push result to nexus. But you don't have guarantee that git checkout will fetch same source code. Why not add input validation on nexus stage

Re: Problem with TAP Plugin

2019-01-11 Thread Arnaud bourree
Try ant syntax: **/*.tap Tap files may be located in subfolders Arnaud Le jeu. 10 janv. 2019 à 19:57, 'aaron Scholz' via Jenkins Users < jenkinsci-users@googlegroups.com> a écrit : > Hi, > > i am running a jenkins master on a ubuntu machine and a slave agent on a > Windows 10 PC. > While running

Re: [Config File Provider Plugin] how to use plugin in pipeline

2019-02-02 Thread Arnaud bourree
Hi, Does properties file format mandatory for you? If not, you can try yaml format and readYaml will provide you object. Arnaud. Le mar. 29 janv. 2019 à 23:17, Alejandro Moncayo < alejandro.monc...@gmail.com> a écrit : > After searching around for examples and not finding good ones, I have this

Re: Using a Variable in Execute Shell that has a . in it

2019-02-08 Thread Arnaud bourree
${deploy.dir} means attribute "dir" of object "deploy". How do you setup deploy object? Le ven. 8 févr. 2019 à 18:25, Eric Fetzer a écrit : > So it works fine to use a variable like build.dir as a parameter in a > build trigger. I'm finding, however, that when I add it to a "execute > shell" co

Re: Using a Variable in Execute Shell that has a . in it

2019-02-08 Thread Arnaud bourree
Do not use dot in parameter names, prefer camel case, kebab case or skeleton case Le ven. 8 févr. 2019 à 20:09, Eric Fetzer a écrit : > deploy.dir is a string parameter at the top of the job: > > [image: Capture.JPG] > > > > > On Friday, February 8, 2019 at 10:25:17 AM UTC-7, Eric Fetzer wrote:

Re: Using a Variable in Execute Shell that has a . in it

2019-02-08 Thread Arnaud bourree
try: ${params.get('deploy.dir')} Le ven. 8 févr. 2019 à 20:19, Eric Fetzer a écrit : > Are you saying that it's not possible to make this work? The .'s are > already in there. I guess I could write an ant script and just use them > inside there because they work fine as parameters to a script.

Re: Using a Variable in Execute Shell that has a . in it

2019-02-08 Thread Arnaud bourree
or ${params['deploy.dir']} Le ven. 8 févr. 2019 à 20:23, Arnaud bourree a écrit : > try: ${params.get('deploy.dir')} > > Le ven. 8 févr. 2019 à 20:19, Eric Fetzer a > écrit : > >> Are you saying that it's not possible to make this work? The .

Re: Multiple `archiveArtifacts` commands in one Jenkins pipeline

2019-02-15 Thread Arnaud bourree
Hi, I've "archiveArtifact" located in many stages in one single pipeline and that works for me on 2.150.2 Arnaud Le ven. 15 févr. 2019 à 14:01, László Boros a écrit : > Anyone with a similar issue? I'd really appreciate any tip. > > Thanks! > Laci > > > On 13 Feb 2019, at 10:37, László Boros

Re: BlueOcean observations from user

2017-10-27 Thread Arnaud bourree
Hi, I'm agreed with Sverre, Blue Ocean is a huge step up in user interface design. Also agreed that views are missing. Additional wish is to view pipeline graph (of last build) on top of build list, and when a build is running, show where it is. Many times, I wait for a job completion, and I just

Re: Visualizing tests separately from different stages of a pipeline

2016-07-24 Thread Arnaud bourree
Hi I'm interested in test grouped by stage: we'd like to run the same set of test in different context: tests have same name and each can work in one context and not in other. Grouped by stage we can see easily which context has issue Regards Arnaud Bourrée Le 22 juil. 2016 14:07, "ST" a écrit

Re: Visualizing tests separately from different stages of a pipeline

2016-07-24 Thread Arnaud bourree
m X Browser Version or something? > > If you don't mind drawing a picture, that could help me get across what > you're use case entails :) > > On Mon, 25 Jul 2016 at 4:24 AM, Arnaud bourree > wrote: > >> Hi >> >> I'm interested in test groupe

Re: Organizing artifacts?

2016-08-11 Thread Arnaud bourree
+1 2016-08-11 14:51 GMT+02:00 Jonathan Hodgson : > Hi, > > I'm winding up with quite a lot of artifacts, logs, built code, test > results etc. > > Is there a way that I could organize these so that it's not just a flat > list on the build page? > > regards > > Jon > > -- > You received this messa

jenkins 2.29 | console log output

2016-11-07 Thread Arnaud bourree
Hello, Since I upgrade from 2.28 to 2.29, console log only print step name but no more step output. I didn't see in change-log any point related to a console log new format. Did someone else fail on same issue? Regards, Arnaud. -- You received this message because you are subscribed to the Go

Re: loop over branches

2020-12-04 Thread Arnaud bourree
Hello, I've setup something similar. We have one test platform and like you want to run tests on per branch. I use lock resource plugin to run tests in exclusive stage. Regards. Arnaud Le mar. 1 déc. 2020 à 22:11, jeremy mordkoff a écrit : > We have too many tests, so we have broken them up i

Re: jiraComment pipeline step throwing groovy.lang.MissingMethodException

2021-01-04 Thread Arnaud bourree
Did you chek if you have Jira plugin installed? Arnaud Le dim. 3 janv. 2021 à 22:06, ST a écrit : > Anyone has any idea why jiraComment(issueKey, body) is not working for us > in scripted pipeline, see below for exception message? > > Anyone that can confirm that it works fine in a scripted pip

Re: Jenkins failing

2021-02-16 Thread Arnaud bourree
You're running on Windows and your docker-machine or equivalent share only user home. My two cents: if you want to do Linux jobs, use Linux not Windows. Regards, Arnaud Le mar. 16 févr. 2021 à 15:03, Vikas Mishra a écrit : > Hi, > > I am very new to this. I have created an API using docker wit

Re: Jenkins failing

2021-02-16 Thread Arnaud bourree
So your docker runs in a vm, not directly in Ubuntu, doesn't it? Regards, Arnaud Le mer. 17 févr. 2021 à 04:44, Vikas Mishra a écrit : > Hi Arnaud, > > I am using linux OS only (ubuntu 20.04). > > Regards > Vikas > > On Wed, 17 Feb 2021, 2:21 am Arnaud bourree,

Re: Problem with Publish over SSH

2021-03-05 Thread Arnaud bourree
Hi, You should use id_rsa which is private key and add id_rsa.pub which is public key to allowed keys in target platform. Regards Arnaud Le sam. 6 mars 2021 à 00:59, nosl...@hotmail.com a écrit : > I am running Jenkins on UBuntu on a Vagrant VM > > I created the ssh keys in ~/.ssh > > From J

Re: How to change the slave node instance type

2021-09-09 Thread Arnaud bourree
Jenkins doesn't instantiate vm in aws nor it is able to change vm configuration. Regardes Arnaud Le jeu. 9 sept. 2021 à 07:48, 'Venkat' via Jenkins Users < jenkinsci-users@googlegroups.com> a écrit : > Hi Team, > > I have a slave node of Linux instance type *t3a. large* I need to change > it to

Re: jcasc

2022-09-16 Thread Arnaud bourree
Hi, With jcasc plugin installed you view your config as demonstrated in jcasc project page. Arnaud Le ven. 16 sept. 2022, 16:40, leroy bouche a écrit : > Bonjour, > > I understand that your answer is for a jenkins server configured with > jcasc. > But I wanted to know, if there is a way from

Re: Exception compiling code ONLY when running through Jenkins

2022-10-27 Thread Arnaud bourree
Does your build requires display? Did you try on your linux without display set? Regardes, Arnaud Le ven. 28 oct. 2022, 05:52, patnlo a écrit : > I have what should be a simple project, using msbuild for VS2019 to build > a particular configuration of my solution. When I run in Visual Studio i

Re: Is it possible to persist session across multiple masters?

2022-11-09 Thread Arnaud bourree
Hi, You may use SAML Single Sign On (SSO) plugin with keyclock or your cloud provider authentication service. Regardes, Arnaud Le mer. 9 nov. 2022, 06:12, Felipe Silveira a écrit : > Hi folks! > > I have a big Jenkins setup today at work (over 3k jobs, with a minimum of > of 1k+ builds a day)

Re: substituting different credentials() in a multibranch pipeline depending on branch

2022-12-01 Thread Arnaud bourree
Hi, env.master'.equals(env.BRANCH_NAME) is String as 'master' is. Try 'master'.equals(env.BRANCH_NAME) instead of env.BRANCH_NAME == 'master' Le mer. 30 nov. 2022, 05:24, Victor Sudakov a écrit : > This syntax may be operational, but I need more testing: > > environment { > > SERVICE_KEY = cr

Re: substituting different credentials() in a multibranch pipeline depending on branch

2022-12-01 Thread Arnaud bourree
ronment{} as you suggest it > should look? > > On 02.12.2022 03:47, Arnaud bourree wrote: > > Hi, > > env.master'.equals(env.BRANCH_NAME) is String as 'master' is. > Try 'master'.equals(env.BRANCH_NAME) instead of > env.BRANCH_NAME == 'master'

Re: substituting different credentials() in a multibranch pipeline depending on branch

2022-12-05 Thread Arnaud bourree
hes with multiple choices of > variables, like a "case" or "if ... else ... elif" operators? > On 02.12.2022 13:33, Arnaud bourree wrote: > > environment { > > SERVICE_KEY = credentials("${env.BRANCH_NAME.equals('master') ? > 'PROD_SERVIC

Re: using multi-line parameter

2023-07-30 Thread Arnaud bourree
Hi, Did you try with backslash? Line1 \ Line2 Regards Arnaud Le sam. 29 juil. 2023, 21:15, idan...@gmail.com a écrit : > Hi, > > I have Job In jenkins that run Maven > I add multi-line parameter > > The problem is that when entering multiple lines when run the maven > command it split the co

Re: How to convert scripted pipeline code into declarative code?

2024-02-12 Thread Arnaud bourree
Hi, No there is not tools converting scripted pipeline to declarative one because you do what you want in scripted mode when declarative is more structured with less programming taste. Regardes, Arnaud Le lun. 12 févr. 2024, 17:15, Mohan a écrit : > Hello Jenkins members, > > Is it possible t