mirror of https://github.com/apache/archiva.git
Fixing syntax errors
This commit is contained in:
parent
27e1fc97a8
commit
c5a4a55521
|
@ -5,7 +5,6 @@ deploySettings = 'DefaultMavenSettingsProvider.1331204114925'
|
||||||
REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/', '_')}"
|
REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/', '_')}"
|
||||||
|
|
||||||
pipeline {
|
pipeline {
|
||||||
stages {
|
|
||||||
agent {
|
agent {
|
||||||
label "${LABEL}"
|
label "${LABEL}"
|
||||||
}
|
}
|
||||||
|
@ -14,6 +13,8 @@ pipeline {
|
||||||
REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/', '_')}"
|
REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/', '_')}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stages {
|
||||||
|
|
||||||
|
|
||||||
stage('Checkout') {
|
stage('Checkout') {
|
||||||
steps {
|
steps {
|
||||||
|
@ -59,7 +60,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
post {
|
post {
|
||||||
success {
|
success {
|
||||||
junit testDataPublishers: [[$class: 'StabilityTestDataPublisher']], '**/target/surefire-reports/TEST-*.xml'
|
junit testDataPublishers: [[$class: 'StabilityTestDataPublisher']], testResults: '**/target/surefire-reports/TEST-*.xml'
|
||||||
archiveArtifacts '**/target/*.war,**/target/*-bin.zip'
|
archiveArtifacts '**/target/*.war,**/target/*-bin.zip'
|
||||||
}
|
}
|
||||||
failure {
|
failure {
|
||||||
|
|
Loading…
Reference in New Issue