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/02/27 17:54:25 UTC

[incubator-plc4x] branch master updated: Disabled the site-generation & deployment part for now ...

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

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


The following commit(s) were added to refs/heads/master by this push:
     new c6c003e  Disabled the site-generation & deployment part for now ...
c6c003e is described below

commit c6c003e6c0caed37a2098508a3e8edf661a1c2f9
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Tue Feb 27 18:54:22 2018 +0100

    Disabled the site-generation & deployment part for now ...
---
 Jenkinsfile | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 4cbd763..ed40541 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -136,8 +136,13 @@ pipeline {
             }
             steps {
                 echo 'Staging Site'
-                sh 'mvn -P${JENKINS_PROFILE} site:stage'
-                stash includes: 'target/**/*', name: 'buildDir'
+                // Commented out as long as the build doesn't run on our own VM
+                // The site generation requires installing some graphical tools,
+                // that are only present on git-websites nodes. But instead of
+                // having these installed on all nodes or moving this step to the
+                // other nodes, we'll just wait for our own VM.
+                //sh 'mvn -P${JENKINS_PROFILE} site:stage'
+                //stash includes: 'target/**/*', name: 'buildDir'
             }
         }
 
@@ -152,9 +157,10 @@ pipeline {
             }
             steps {
                 echo 'Deploy Site'
-                unstash 'buildDir'
+                // Commented out as long as the build doesn't run on our own VM
+                //unstash 'buildDir'
                 // We need to regenerate the site for deploy as we switch the node. We could save time by stash/unstash.
-                sh 'mvn -P${JENKINS_PROFILE} scm-publish:publish-scm'
+                //sh 'mvn -P${JENKINS_PROFILE} scm-publish:publish-scm'
             }
         }
 

-- 
To stop receiving notification emails like this one, please contact
cdutz@apache.org.