-
Bug
-
Resolution: Unresolved
-
Major
-
Jenkins 2.249.x both installed as package on Ubuntu 18.04 and running as docker container
Checking out of a wrong SVN URI throws and svn exception but the stage finishes "Success" the first time the pipeline is built. Next build, the exception is thrown again and now the stage finishes "Failure". Next build, again the exception is thrown but now the stage finishes "Success" ... next time "Failure"... and so on and so forth.
To reproduce the bug, try the following pipeline and build it several times. The Repo URI has an deliberate error on the last folder, so it should fail allways:
''''
pipeline {
agent any
stages {
stage("Checkout SVN Folder"){
steps
}
}
}
''''