Questions about the Jenkins “Pipeline” plugin suite (formerly “Workflow”). Not about pipelines in Jenkins in general (e.g. using downstream jobs).
I cannot use environment variables set in previous blocks in access stage below. pipeline{ agent any stages{ stage("set env …
jenkins groovy jenkins-pipeline jenkins-job-dslI'm looking for a way to run Docker-enabled build consisting of multiple containers in Jenkins 2.0. Are there any plans for …
jenkins docker jenkins-pipelineI 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-2Im trying to build a pipeline on Jenkins that runs a command on node and informs me of the following …
groovy jenkins-pipeline jenkins-groovyGoal Run multiple stages of a declarative Jenkins pipeline on the same node. Setup This is just a minimal example …
jenkins jenkins-pipelineI am trying to use an if statement in my Jenkinsfile for multi branch pipeline project. For the sake of …
jenkins groovy jenkins-pipeline multibranch-pipelineHow can I display build timestamps for each line of a multi-branch pipeline project? Is it a supported feature? If …
jenkins-pipelineI have the following step in my declarative jenkins pipeline: I create script which comes from my resources/ folder using …
jenkins jenkins-pipeline credentialsAfter going through the pipeline and Jenkinsfile documentation, I am a bit confused on how to create a Stage -&…
jenkins jenkins-pipelineHow can I teach my Jenkisfile to login via basic auth in this setup? I'm using a custom docker image …
docker jenkins jenkins-pipeline docker-registry