From 81cf8b7e8e78d39410c51c033ab08ea27c33e2a1 Mon Sep 17 00:00:00 2001 From: richardg867 Date: Tue, 15 Mar 2022 23:23:35 -0300 Subject: [PATCH] Jenkins: Don't git clone on Windows nodes due to line ending issues --- .ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index 1c70bd0f4..7c5502cec 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -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)