Avoid running tasks we need for later

This commit is contained in:
Andrew Steinborn
2018-08-31 21:34:00 -04:00
parent 19c4c300e5
commit 561df4e9b2

7
Jenkinsfile vendored
View File

@@ -8,15 +8,10 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './gradlew shadowJar' sh './gradlew build'
archiveArtifacts 'proxy/build/libs/*-all.jar,api/build/libs/*-all.jar' archiveArtifacts 'proxy/build/libs/*-all.jar,api/build/libs/*-all.jar'
} }
} }
stage('Test') {
steps {
sh './gradlew test'
}
}
stage('Deploy Artifacts') { stage('Deploy Artifacts') {
when { when {
expression { expression {