Jenkins: Don't git clone on Windows nodes due to line ending issues
This commit is contained in:
2
.ci/Jenkinsfile
vendored
2
.ci/Jenkinsfile
vendored
@@ -189,7 +189,7 @@ pipeline {
|
|||||||
/* Adding to the above, run a git clone as soon as possible on any node
|
/* Adding to the above, run a git clone as soon as possible on any node
|
||||||
to further avoid race conditions caused by busy node executor delays. */
|
to further avoid race conditions caused by busy node executor delays. */
|
||||||
retry(10) {
|
retry(10) {
|
||||||
node('citadel') {
|
node('citadel && !Windows') {
|
||||||
/* Run git clone. */
|
/* Run git clone. */
|
||||||
gitClone(repository, branch)
|
gitClone(repository, branch)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user