Update Jenkinsfile

This commit is contained in:
Jon 2019-04-14 09:40:46 -05:00 committed by GitHub
parent 99e563d8f9
commit 09269aef65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -2,14 +2,14 @@ pipeline {
agent {
docker {
args '-v gradle-cache:/home/gradle/.gradle'
image 'gradle:4.10.3-jdk8-alpine'
image 'gradle:3.5-jdk8-alpine'
}
}
stages {
stage('Build') {
steps {
sh 'gradle build'
sh 'gradle build --no-daemon'
}
}
stage('Archive') {