All Questions
Tagged with jenkins-pipeline jenkins-plugins
1,902 questions
0
votes
1
answer
78
views
Masking of secret in Jenkins logs
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, ...
0
votes
0
answers
59
views
Jenkins SCM Pipeline: "Selected Git installation does not exist" Error with Valid Path
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" -...
0
votes
0
answers
45
views
Jenkins offline and plugins installation failed issue in Windows 10
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 ...
0
votes
0
answers
15
views
Track Status of Multiple Async Jenkins Jobs in Flask via HTTP/ Rest Call?
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 ...
0
votes
0
answers
55
views
git rev-list working locally but failing in pipeline
I have a stage in my pipeline like below:
stage("Pre Flight Checks") {
steps {
echo 'using the message count externally'
script {
...
0
votes
1
answer
51
views
How to get Jenkins lockable resources parameters with matrix plugin
I'm trying to run automated tests in parallel on several devices using Jenkins. There is the matrix plugin for the parallel execution. I have several devices connected to the same agent and they have ...
0
votes
0
answers
11
views
Using the Clover plugin and failed builds are causing Clover to not report results of code coverage. How do we force reporting even on failures?
We are using Jenkins pipelines with the excellent Clover plugin. However, when a test fails, we get the message.
No Clover report will be published due to a build Failure
We are trying to find a way ...
0
votes
0
answers
21
views
jenkins fails for docker plugin
I am using
docker.image(container_url).inside('-u root --platform linux/arm64') {
sh 'ls -al'
dir(path_to_bin_dir) {
call_my_function()
}
I have the qemu container starting ...
0
votes
0
answers
81
views
Unable to download any plugins in Jenkins
Problem: I m getting an error when I navigate to manage plugin
There were errors checking the update sites: FileNotFoundException: http://updates.jenkins.io/update-center.json?id=default&version=...
0
votes
0
answers
60
views
Error Publishing to Nexus from Jenkins: PluginClassLoader Issue
I'm encountering an error while trying to publish artifacts to Nexus from my Jenkins pipeline.
The error message is:
PluginClassLoader for workflow-cps
Here is the exact output
I’ve ensured that all ...
0
votes
0
answers
30
views
Build jenkins pipeline on PR creation
I create a small project for testing building a workflow on PR creation. I follow this tuto: Tuto
I have two branches. Each has a Jenkinsfile
main Jenkinsfile:
pipeline {
agent any
environment {
...
0
votes
0
answers
22
views
Unable to perform Multi team scheduling with parameterized
With parameterized scheduler plugin, I'm unable to perform multiple team for a single job scheduling.
Ex. Team A comes and scheduled a taskA by its building the JobA
My jenkinsfile trigger with the ...
0
votes
1
answer
119
views
Jenkins Docker Error: Failed to run image the working directory is invalid, it needs to be an absolute path
Running Windows 11 with Docker in WSL
I'm learning CICD Jenkins and I'm the book section where I use Jenkins and Docker. treat me like I know nothing about docker. I'm facing this issue where the ...
0
votes
0
answers
24
views
How can I access the bankName and tags in the pipeline which are dynamically generated
I am using active choices reactive reference parameter plugin of jenkins to dynamically get the banks from another job and get image tags from Nexus, for each bank I create input element for the user ...
0
votes
0
answers
101
views
Jenkins Pipeline Fails to Execute SonarQube Scanner: not found Error
I'm running a Jenkins pipeline to perform a SonarQube analysis on my project, but the build fails during the SonarQube scanning stage. I'm using the SonarQube plugin in Jenkins, and below is the error ...