Re: Jenkins does not install one particular CustomTool (already tried: extract ZIP, shell script)

2021-03-08 Thread Amedee Van Gasse
Case closed. I'm now pre-installing the tool on the node using Ansible, which installs it in C:\Program Files instead of C:\Users\jenkins\tools\com.cloudbees.jenkins.plugins.customtools.CustomTool\ . Then I'm setting the path to the custom tool on the node configuration. That works. On Friday,

BitBucket Branch Source - Create Exception for one specific Repository

2021-03-08 Thread Ashish Sharma
Hi All, Is it possible to add some exception cases for a specific repository in BitBucket Org folder (provided by BitBucket branch source). Our Usecase: We want to create develop branch pipelines for all repositories, except one. Is it possible using the same Org folder. Trying to avoid

Re: Problem with Publish over SSH

2021-03-08 Thread nosl...@hotmail.com
Thank you slide and Arnaud. Your advice helped me successfully configue it. On Saturday, March 6, 2021 at 8:15:46 AM UTC-6 slide wrote: > If the keyfile is on an agent, it won't work. You need the private key on > the controller and then specify the path on the controller to where the key > is

Cancel Build Excluded Regions Strategy not working

2021-03-08 Thread Ven H
I have a Jenkins controller version: 2.257. Basic Branch Build Strategy plugin version: 1.3.2. I have a GitHub repository which has App, DB and Config modules. App is at root. DB and Config modules are inside db and config folders respectively. Jenkinsfile is present at root for App and inside

Using withEnv with withCredentials

2021-03-08 Thread kelvSYC
Suppose I have a username and password credential that I use with a withCredentials step, and I wish to use it to construct a URL for use with the http_proxy environment variable. Currently I have this: withCredentials([usernameColonPassword(credentialsId:’proxy-credentials’, variable:

Question about a plugin for AWS Serverless Application Model (SAM)

2021-03-08 Thread Victor Lesau
Hi All! Currently, there is a plugin for deploying serverless (i.e., Lambda, SNS, SQS, Step Functions, etc) on AWS with SAM (Serverless Application Model ). However, theoretically, one can also build serverless using SAM CLI in a container build image that

Re: Using withEnv with withCredentials

2021-03-08 Thread 'Björn Pedersen' via Jenkins Users
Used : withEnv([‘http_proxy=https://${PROXY_CREDENTIALS}@proxy-endpoint.com:3128']) { Note the single quotes, this needs to be double-quoted for the replacement to happen. Björn kelvSYC schrieb am Montag, 8. März 2021 um 22:29:00 UTC+1: > Suppose I have a username and password credential