workflow-basic-steps-plugin
workflow-basic-steps-plugin copied to clipboard
When wrapping parallel steps in a retry block, if you attempt to abort the run after a stage has failed, it will continue retrying instead of aborting. Jenkins will also...
After upgrade to the latest version of the Jenkins core and workflow-basic-steps-plugin, we have detected that the behavior of the retry + timeout steps changes, the following code before the...
For "waitUntil" step the "Pipeline Syntax: Snippet Generator > Generate Pipeline Script" generates the error message: ``` no public field ‘initialRecurrencePeriod’ (or getter method) found in class org.jenkinsci.plugins.workflow.steps.WaitForConditionStep ``` Jenkins...
The Declarative Directive Generator gives this for using a configured JGit tool tools { jgit 'jgit' } However, it doesn't actually work Tool type "jgit" does not have an install...
My pipeline has the following options: options { buildDiscarder(logRotator(numToKeepStr: '3')) disableResume() timeout(activity: true, time: 10, unit: 'MINUTES') } However, there is sometimes a timeout, although every few seconds the log...
If a stage contains a timeout step, then the "Restart from stage" feature does not work. Any attempt to restart the stage is just skipped by the timeout step. A...
Hi, I am experiencing an unexpected change of the current working directory when withEnv or withCredentials steps are used. dir step is a viable workaround, but I am wondering if...
When a tool is upgraded versions or the automatic installer is changed, Jenkins does not update the tool installed on the build agent. For example, the Sonarqube plugin installs its...
No matter if stash succed or not unstash always pass. I want to stash file but I dont know if it exists. If file exists everything goes well my_jar is...
Not a git repository after unstash when useDefaultExcludes: false Jenkins ver. 2.150.2 Pipeline: Basic Steps Commonly used steps for Pipelines. 2.14 Pipeline: pipeline { agent none stages { stage('Checkout') {...