Try docker compilation

This commit is contained in:
JackCarterSmith 2018-11-15 13:32:11 +01:00
parent 9c894e0ae1
commit ac2fca01e8

10
Jenkinsfile vendored
View File

@ -13,15 +13,11 @@ pipeline {
sh './gradlew setupCIWorkspace' sh './gradlew setupCIWorkspace'
} }
} }
stage('Check') {
steps {
sh './gradlew check'
}
}
stage('Compile') { stage('Compile') {
steps { steps {
sh '''./gradlew clean sh './gradlew clean'
./gradlew build''' sh './gradlew check'
sh './gradlew build'
} }
} }
stage('JAR release') { stage('JAR release') {