You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2018/12/10 14:00:17 UTC

[incubator-plc4x] branch develop updated: PLC4X-78 - Write operations seem to fail - Tried fixing the pipeline syntax.

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/incubator-plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 81fa0bd  PLC4X-78 - Write operations seem to fail - Tried fixing the pipeline syntax.
81fa0bd is described below

commit 81fa0bd07174c34a530d6f7152c9a8136c3b9268
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Mon Dec 10 15:00:13 2018 +0100

    PLC4X-78 - Write operations seem to fail
    - Tried fixing the pipeline syntax.
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 00c842d..b8ad64d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -201,7 +201,7 @@ pipeline {
         failure {
             emailext (
                 subject: "[BUILD-FAILURE]: Job '${env.JOB_NAME} [${env.BRANCH_NAME}] [${env.BUILD_NUMBER}]'",
-                body: ${FILE,path="tools/failure-email-template.html"},
+                body: '${FILE, path="$WORKSPACE/tools/failure-email-template.html"}',
                 to: "dev@plc4x.apache.org",
                 recipientProviders: [[$class: 'DevelopersRecipientProvider']]
             )
@@ -211,7 +211,7 @@ pipeline {
         unstable {
             emailext (
                 subject: "[BUILD-UNSTABLE]: Job '${env.JOB_NAME} [${env.BRANCH_NAME}] [${env.BUILD_NUMBER}]'",
-                body: ${FILE,path="tools/failure-email-template.html"},
+                body: '${FILE, path="$WORKSPACE/tools/failure-email-template.html"}',
                 to: "dev@plc4x.apache.org",
                 recipientProviders: [[$class: 'DevelopersRecipientProvider']]
             )
@@ -222,7 +222,7 @@ pipeline {
             if (currentBuild.previousBuild != null && currentBuild.previousBuild.result != 'SUCCESS') {
                 emailext (
                     subject: "[BUILD-STABLE]: Job '${env.JOB_NAME} [${env.BRANCH_NAME}] [${env.BUILD_NUMBER}]'",
-                    body: ${FILE,path="tools/success-email-template.html"},
+                    body: '${FILE, path="$WORKSPACE/tools/success-email-template.html"}',
                     to: "dev@plc4x.apache.org",
                     recipientProviders: [[$class: 'DevelopersRecipientProvider']]
                 }