Jenkins: Don't git clone on Windows nodes due to line ending issues

This commit is contained in:
richardg867
2022-03-15 23:23:35 -03:00
committed by GitHub
parent cc800ee64d
commit 81cf8b7e8e

2
.ci/Jenkinsfile vendored
View File

@@ -189,7 +189,7 @@ pipeline {
/* 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. */
retry(10) {
node('citadel') {
node('citadel && !Windows') {
/* Run git clone. */
gitClone(repository, branch)