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