Fix missing args
This commit is contained in:
parent
ac2fca01e8
commit
78dafa87c2
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -22,9 +22,16 @@ pipeline {
|
||||
}
|
||||
stage('JAR release') {
|
||||
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)
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
junit 'build/reports/**/*.xml'
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user