Top "Jenkins-2" questions

Jenkins is an extensible continuous integration server.

Read interactive input in Jenkins pipeline to a variable

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-2
How to invoke a jenkins pipeline A in another jenkins pipeline B

I 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-2
Error response from daemon: pull access denied for TestDockerImage

I am new to docker and Jenkins2. I am trying to pull docker image from private docker repository. pipeline { agent{ …

docker jenkins-pipeline jenkins-2
Jenkins Pipeline Fails if Step is Unstable

Currently 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-2
How to execute a command in a Jenkins 2.0 Pipeline job and then return the stdout

Is 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-2
How to trigger a Jenkins 2.0 Pipeline job from a GitHub pull request

It 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-2
Error: "Expected named arguments" in parallel in Jenkins groovy script

I 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-2
Jenkinsfile get current tag

Is there a way to get the current tag ( or null if there is none ) for a job in a …

git jenkins jenkins-2
Jenkins delete jobs when branch deleted via branch-indexing

Is 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-2
How to add build parameters to jenkins multibranch pipeline?

I 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