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'
}
}
stage('Check') {
steps {
sh './gradlew check'
}
}
stage('Compile') {
steps {
sh '''./gradlew clean
./gradlew build'''
sh './gradlew clean'
sh './gradlew check'
sh './gradlew build'
}
}
stage('JAR release') {