Jenkins is an extensible continuous integration server.
In a Jenkins pipeline, i want to provide an option to the user to give an interactive input at run …
jenkins groovy jenkins-pipeline jenkins-2I have two Jenkins pipelines, let's say pipeline-A and pipeline-B. I want to invoke pipeline-A in pipeline-B. How can I …
jenkins jenkins-pipeline jenkins-2I am new to docker and Jenkins2. I am trying to pull docker image from private docker repository. pipeline { agent{ …
docker jenkins-pipeline jenkins-2Currently my pipeline fails (red), when a maven-job is unstable (yellow). node { stage 'Unit/SQL-Tests' parallel ( phase1: { build 'Unit-Tests' }, // maven …
maven jenkins jenkins-pipeline jenkins-2Is there a better way to run a shell task in a Jenkins 2.0 pipeline and then return the stdout of …
jenkins groovy jenkins-workflow jenkins-pipeline jenkins-2It looks like the GitHubPullRequestBuilder is not compatible with Jenkins v2.0 pipeline jobs. How do you configure a pipeline job …
github jenkins jenkins-pipeline jenkins-2I have a Jenkins 2.0 pipeline, with a groovyscript like this: node('nnh561.raijin') { stage 'checkout' build('trunk/checkout') stage 'build' …
jenkins groovy jenkins-pipeline jenkins-2Is there a way to get the current tag ( or null if there is none ) for a job in a …
git jenkins jenkins-2Is there a way to tell Jenkins (2.2) to remove jobs for branches that were deleted? Currently my build-monitor fills up …
git jenkins jenkins-2I would like to add additional build parameters to my jenkins mutibranch pipeline job. Relevant versions: org.jenkins-ci.plugins:script-security:1.19 …
jenkins jenkins-workflow jenkins-2