Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
1 replies
54 views

I’m using the Google Login Plugin in Jenkins, and I want to allow access only to users who belong to certain Google Groups. My setup: I have enabled the Google Directory API (Admin SDK → Directory ...
airdata's user avatar
  • 661
0 votes
0 answers
26 views

I want to do the following (I’m testing with the Active Choices plugin): Have a dropdown with three possible values (one, two, three) – Active Choices Parameter Depending on the selection, display ...
Angel Elvira's user avatar
0 votes
1 answer
66 views

In Jenkins, I'm using the OWASP plugin, but I keep getting the error: ERROR: Couldn’t find any executable in 'null'. stage('Dependency-Check') { steps { dir("${...
AccorDi's user avatar
0 votes
0 answers
53 views

we are using allure command line tool to generate reports and have multiple versions 2.10.0 and 2.32.1. 2.32.1 is set as allure-latest in tools config but when we run the Jenkins pipeline its ...
NGK's user avatar
  • 1
0 votes
0 answers
84 views

Occasionally in Jenkins Pipelines we see the following error: ERROR: Could not determine exact tip revision of master; falling back to nondeterministic checkout This then results in a git checkout ...
HLT's user avatar
  • 607
0 votes
0 answers
83 views

I would like to add the job name and build number as a pod label of the agent pod that is spawned by the kubernetes plugin. For example, if I have a job called "buildMyApp" and I start build ...
Riccardo Ficarra Fiky's user avatar
0 votes
0 answers
62 views

In my Jenkins instance, I have an error message that the Azure Container Services Plugin cannot be loaded due to a missing plugin, kubernetes-cd I don't need this plugin so I'd be happy to uninstall ...
OmniZ's user avatar
  • 143
0 votes
0 answers
65 views

I'm running Jenkins on a Windows machine, and I have a Jenkinsfile that triggers a pipeline periodically using the cron directive: pipeline { agent any triggers { cron('0 1 * * 1-5') /...
tail's user avatar
  • 481
0 votes
1 answer
98 views

The problem Brief I am trying to add a GUI option to the dropdown menu available for all historical builds: Details I want to create an option that will lock the build, create a git tag by ...
Troyseph's user avatar
  • 5,138
2 votes
1 answer
155 views

We have multiple Jenkins controllers for different products. One 2 of those controllers, a new behaviour has emerged. When I create a new node through the GUI (using the "Permanent Node" ...
jimtut's user avatar
  • 2,425
0 votes
0 answers
179 views

I am getting this error in jenkins plugin manager when I navigate to updates or available plugins There were errors checking the update sites: ArrayOutOfBoundsException: Index 0 out of bounds for ...
Gowducheruvu's user avatar
0 votes
1 answer
260 views

I am currently on Jenkins version 2.504.3. I tried upgrading my Jenkins JDK from 17 to 21 on my Jenkins controller. I am using Open JDK and my Jenkins runs on Ubuntu server. I encountered the ...
Gowducheruvu's user avatar
0 votes
0 answers
34 views

I am having issues with the latest n-1 Jenkins LTS version as well with the plugins Timestamper and Prisum APi Plugin. Both need antisamy-markup-formatter, but different versions. I do have 173 on the ...
Senthil13's user avatar
0 votes
0 answers
94 views

I have a Jenkins pipeline that has been working fine for several years. But I hadn't run jenkins in a while, and after 6 months I ran it again and it failed at the git clone stage. build results ...
777's user avatar
  • 1
0 votes
0 answers
76 views

I have a Jenkins instance deployed on a K8s cluster. I have a job that fails when I try to delete it through the Jenkins UI. I have accessed into the container (inside the pod) in the path where the ...
Felipe's user avatar
  • 379
0 votes
0 answers
36 views

How to exclude a folder (specifically node_modules folder in a Reactjs project) from a Jenkins Fortify step used like below? stage('code security') { environment{ fortifyScanner = tool '...
Batu.Khan's user avatar
  • 3,065
0 votes
0 answers
42 views

I'm working on creating a Kubernetes Jenkins deployment, with Jenkins Operator. I have specified versions for a number of plugins, but am getting issues in particular with the configuration-as-code ...
shane fay's user avatar
0 votes
1 answer
96 views

this is my first time posting a question so I hope I am doing it right! I am newer to Jenkins and Groovy, but have been working with the Jenkinsfile for quite a while now, specifically focusing on the ...
Enigmatic's user avatar
1 vote
2 answers
119 views

I have a requirement to give access to an external supplier and I would like to give them access to only a View with some pipelines inside. I don’t want them seeing all my pipelines created on Jenkins....
Aldo Inácio da Silva's user avatar
0 votes
0 answers
59 views

We are running Jenkins on a GKE cluster and have observed a strange issue with our multibranch declarative Jenkins pipeline at the beginning of the pipeline execution. 13:27:09 + git config --global -...
Nishit Kumar's user avatar
0 votes
0 answers
26 views

We do our work on feature branches and merge to a branch called "dev" using Gitlab merge requests. Jenkins handles building and testing the code using the Gitlab multi branch pipeline plugin....
Sean Lynch's user avatar
  • 2,993
0 votes
0 answers
32 views

When running terraform plan, or in this case for testing, aws sts get-caller-identity via pipeline stage, I'm getting the error: An error occurred (InvalidClientTokenId) when calling the ...
Romit Kumar's user avatar
5 votes
0 answers
2k views

Time to time I run into this issue, what is solved by a Jenkins restart, but I would be happy to find a better solution. Sometimes the builds can not even start, with the following error (this is the ...
redseven's user avatar
  • 1,187
0 votes
0 answers
44 views

We are using Jenkins pipelines for the CI/CD in our .NET 9 APIs, but I'm new to this, and I'm stuck regarding how to hardcode a specific credential in the casc.yml file. casc.yml (the place where my ...
Diego Perez's user avatar
  • 3,054
1 vote
2 answers
52 views

Currently i am using "post-build Actions" in order to trigger another build and it works, i have a condition of "string match" that if it matches the build triggered, Now i have ...
alon hen's user avatar
1 vote
1 answer
169 views

I've below build.gradle - buildscript { repositories { maven { name 'jenkins' url 'https://repo.jenkins-ci.org/releases/' } } } plugins { id '...
user51's user avatar
  • 10.6k
0 votes
0 answers
44 views

I am getting socket timeout error when Jenkins is trying to connect to update center for installation of plugins. I am getting the error given in the following snap. My computer is connected to the ...
Aniket's user avatar
  • 11
1 vote
1 answer
97 views

I have the same problem as this guy How can i pass the parameter i recieved to a http request body in Jenkins?, but seems to me nobody answered the question... My problem is that I can't pass build ...
Jivopis's user avatar
  • 1,536
0 votes
1 answer
281 views

I have a custom script which fetch the secret from vault . ( I cannot use Jenkins credentials to store the secrets ) My code def executeCommand(def command) { return sh(script: command, ...
pythonhmmm's user avatar
0 votes
0 answers
38 views

We are using Omnistudio(Formerly Vlocity) for the first time and need to deploy it to higher orgs. We have enabled metadata API & Managed Package Runtime from Omnistudio settings. Now using VS I'm ...
Harry's user avatar
  • 1
0 votes
0 answers
35 views

I want to add a button to the build page that when clicked will make part of the table appear (is js even possible when using the active choice plugin?). I'm trying to add a button to the HTML code of ...
malltaf's user avatar
0 votes
1 answer
55 views

I have an environment variable named TRIGGER_JOB in Jenkins that tells me what job triggered that build. Since I'm using groovy to start a new job, I rely on /buildWithParameters like this... https://...
Quotenbanane's user avatar
0 votes
0 answers
167 views

I have created a project, uploaded it to GitHub, and I want to fetch and run it using a pipeline SCM in Jenkins. I have already configured Git installation in Jenkins under "Manage Jenkins" -...
Jaimin Vitthalapara's user avatar
0 votes
0 answers
60 views

If a pipeline timeouts currently working via SSH Agent on another host, the timeout leads not to an aborted state - it just continues. This could be a bug, maybe someone could confirm this with ...
CozyBob's user avatar
  • 53
0 votes
0 answers
26 views

I was hoping something like this would work: agent { node { label 'ec2-container' } docker{ label 'docker-container' image 'jenkins-pipeline:latest' } } Where one Jenkins server ...
bcgilmartin's user avatar
-1 votes
2 answers
43 views

i have jenkins config for setting up integrate from jenkins to sonarqube ` // Stage to check SonarQube task status stage('Check SonarQube Task Status') { steps { script { ...
jujil lololo's user avatar
-1 votes
2 answers
294 views

I've been setting up the official Jenkins docker container in my lab, and I'm installing Ansible (and also Python if possible) as plugins. I've installed the Ansible plugin and I need to setup/install ...
Kareem's user avatar
  • 571
0 votes
0 answers
28 views

I am trying to use the value of Jenkins env variable in the recipient field for the Editable Email Notification. When running the build it is unable to resolve the variable. Here is the plugin version ...
Joe_12345's user avatar
  • 669
0 votes
0 answers
61 views

I tried installing Jenkins on my Windows 10 Azure VM, but during the initial configuration, it shows that Jenkins is Offline just before the plugins installation page. After referring to some blogs, I ...
Dilshad's user avatar
0 votes
0 answers
34 views

I tried installing Jenkins on my Windows 10 Azure VM, but during the initial configuration, it shows that Jenkins is offline just before the plugins installation page. enter image description here ...
Dilshad's user avatar
0 votes
1 answer
214 views

I’ve just set up a new Jenkins instance (version 2.479.3), installed the necessary plugins for Pipeline jobs, and configured a new pipeline job. However, under the Pipeline section in the job ...
hmu535's user avatar
  • 112
-1 votes
1 answer
37 views

I am running robot framework gui scripts on Jenkins windows slave node. if i want to see the execution of browser opening as part of running the job, wat needs to be done. currently all executions are ...
SS L's user avatar
  • 3
0 votes
0 answers
18 views

I want to optimize the load of the server that host Jenkins node: Allow the jobs that actively using CPU to utilize the server up to its declared capacity (e.g. run as many as CPU cores the host has) ...
nsh's user avatar
  • 480
0 votes
0 answers
20 views

I have a Python Flask application that triggers X (e.g., X=100) asynchronous calls to start Jenkins jobs simultaneously using an API. Once all the jobs have been completed, I need to trigger another ...
nabiharaza's user avatar
0 votes
1 answer
38 views

On a Jenkins instance with the "Monitoring" plugin installed, there is a graph with the following title: Waiting in build queue (s) on the page at https://YOURJENKINS/monitoring/nodes. What ...
sparrowt's user avatar
  • 3,099
0 votes
1 answer
34 views

On Jenkins I want to run my test suite against different environment manually like (stage, QA, prod). How to achieve the same? Also I Want to map environment with special group of test cases. Like To ...
Nitesh Barot's user avatar
1 vote
1 answer
62 views

i am trying to have one active choice parameter that called pg1 as shown below with checkboxes value and the second Active Choices Reactive Parameter depend on it so whatever i chose in the first ...
Nadeem's user avatar
  • 37
-1 votes
1 answer
267 views

I set my Jenkins job pipeline properties() this way properties([ [$class: "jenkins.model.BuildDiscarderProperty", strategy: [$class: "LogRotator", numToKeepStr: "50", ...
Chris F's user avatar
  • 17.3k
0 votes
1 answer
215 views

I created a parameterized Jenkins Job which has two active choiced parameters, the second one is reactive (depends on the first one). Each parameter uses a groovy script to generate their values of ...
Rath256bits's user avatar
0 votes
0 answers
137 views

I have a stage in my pipeline like below: stage("Pre Flight Checks") { steps { echo 'using the message count externally' script { ...
Venkat Akurathi's user avatar

1
2 3 4 5
145