Switched to CMD for Windows Server

* when using shell there are huge performance penalty
This commit is contained in:
Waldemar Zurowski 2020-06-20 17:26:57 +01:00
parent e021022d0d
commit 3377df2212

View File

@ -55,7 +55,7 @@ pipeline {
stage('Unit Tests') {
agent { label 'mswin' }
steps {
sh "./gradlew --no-daemon " +
bat "./gradlew --no-daemon " +
"--stacktrace " +
"-Pcompilation.warningsAsErrors=false " +
"-Ptests.failFast=true " +
@ -80,7 +80,7 @@ pipeline {
}
agent { label 'mswin' }
steps {
sh "./gradlew --no-daemon " +
bat "./gradlew --no-daemon " +
"clean integrationTest"
}
post {