Jenkins: Use UCRT64 shell on Windows.

This commit is contained in:
OBattler
2026-01-28 11:13:45 +01:00
parent 43aa0db755
commit f85bbe8d04

2
.ci/Jenkinsfile vendored
View File

@@ -147,7 +147,7 @@ def runBuild(args) {
if (isUnix())
return sh(returnStatus: true, script: "chmod u+x '$WORKSPACE/.ci/build.sh' && exec '$WORKSPACE/.ci/build.sh' $args")
else
return bat(returnStatus: true, script: "C:\\msys64\\msys2_shell.cmd -msys2 -defterm -here -no-start -c 'exec \"\$(cygpath -u \\'%WORKSPACE%\\')/.ci/build.sh\" $args'")
return bat(returnStatus: true, script: "C:\\msys64\\msys2_shell.cmd -ucrt64 -defterm -here -no-start -c 'exec \"\$(cygpath -u \\'%WORKSPACE%\\')/.ci/build.sh\" $args'")
}
def failStage() {