mirror of https://github.com/apache/archiva.git
Recombining build and deploy phase
Getting errors when deploy is run in second call.
This commit is contained in:
parent
91274a1281
commit
3732f2e072
|
@ -48,13 +48,15 @@ pipeline {
|
|||
// -Dmaven.compiler.fork=false: Do not compile in a separate forked process
|
||||
// -Dmaven.test.failure.ignore=true: Do not stop, if some tests fail
|
||||
// -Pci-build: Profile for CI-Server
|
||||
sh "mvn clean install -B -U -e -fae -Dmaven.test.failure.ignore=true -T2 -Dmaven.compiler.fork=false -Pci-build"
|
||||
sh "mvn clean deploy -B -U -e -fae -Dmaven.test.failure.ignore=true -T2 -Dmaven.compiler.fork=false -Pci-build"
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
success {
|
||||
always {
|
||||
junit testDataPublishers: [[$class: 'StabilityTestDataPublisher']], testResults: '**/target/surefire-reports/TEST-*.xml'
|
||||
}
|
||||
success {
|
||||
archiveArtifacts '**/target/*.war,**/target/*-bin.zip'
|
||||
}
|
||||
failure {
|
||||
|
@ -63,26 +65,6 @@ pipeline {
|
|||
}
|
||||
}
|
||||
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
timeout(120) {
|
||||
withMaven(maven: buildMvn, jdk: buildJdk,
|
||||
mavenSettingsConfig: deploySettings,
|
||||
mavenLocalRepo: ".repository",
|
||||
options: [artifactsPublisher(disabled: true), junitPublisher(disabled: true, ignoreAttachments: false)]
|
||||
)
|
||||
{
|
||||
sh "mvn deploy -B -Dmaven.test.skip=true"
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
failure {
|
||||
notifyBuild("Deploy failure")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
post {
|
||||
unstable {
|
||||
|
|
Loading…
Reference in New Issue