Fix missing args

This commit is contained in:
JackCarterSmith 2018-11-15 13:39:06 +01:00
parent ac2fca01e8
commit 78dafa87c2

9
Jenkinsfile vendored
View File

@ -22,9 +22,16 @@ pipeline {
} }
stage('JAR release') { stage('JAR release') {
steps { steps {
archiveArtifacts(artifacts: 'build/libs/OrbitalSatellite-*.jar', excludes: 'build/libs/OrbitalSatellite-*-source.jar') archiveArtifacts(artifacts: 'build/libs/OrbitalSatellite-*.jar', excludes: 'build/libs/OrbitalSatellite-*-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)
} }
} }
} }
post {
always {
junit 'build/reports/**/*.xml'
}
}
} }