This is an automated email from the ASF dual-hosted git repository.
martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva.git
The following commit(s) were added to refs/heads/master by this push:
new c5a4a55 Fixing syntax errors
c5a4a55 is described below
commit c5a4a55521a2f0b4ac57076067187d4326c98780
Author: Martin Stockhammer <[email protected]>
AuthorDate: Tue May 1 14:08:14 2018 +0200
Fixing syntax errors
---
Jenkinsfile | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 861a28a..c4d03fa 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,14 +5,15 @@ deploySettings = 'DefaultMavenSettingsProvider.1331204114925'
REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/', '_')}"
pipeline {
- stages {
- agent {
- label "${LABEL}"
- }
+ agent {
+ label "${LABEL}"
+ }
- environment {
- REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/',
'_')}"
- }
+ environment {
+ REPO_DIR = "${env.JENKINS_HOME}/.repo-${env.JOB_NAME.replace('/',
'_')}"
+ }
+
+ stages {
stage('Checkout') {
@@ -59,7 +60,7 @@ pipeline {
}
post {
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'
}
failure {
--
To stop receiving notification emails like this one, please contact
[email protected].