Added Jenkinsfile

This commit is contained in:
JackCarterSmith 2019-02-25 13:03:24 +01:00
parent 8523d91e6e
commit c3434ba7e8

2
Jenkinsfile vendored
View File

@ -22,7 +22,7 @@ pipeline {
} }
stage('JAR release') { stage('JAR release') {
steps { steps {
archiveArtifacts(artifacts: 'build/libs/BigAlarm-*.jar', excludes: 'build/libs/BigAlarm-*-sources.jar') archiveArtifacts(artifacts: 'build/libs/bigalarm-*.jar', excludes: 'build/libs/bigalarm-*-sources.jar')
cleanWs(cleanWhenAborted: true, cleanWhenFailure: true, cleanWhenNotBuilt: true, cleanWhenSuccess: true, cleanWhenUnstable: true, cleanupMatrixParent: true, deleteDirs: true) cleanWs(cleanWhenAborted: true, cleanWhenFailure: true, cleanWhenNotBuilt: true, cleanWhenSuccess: true, cleanWhenUnstable: true, cleanupMatrixParent: true, deleteDirs: true)
} }
} }