You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@edgent.apache.org by dl...@apache.org on 2017/11/02 03:21:39 UTC

[28/50] [abbrv] incubator-edgent git commit: undo "--fail-at-end"

undo "--fail-at-end"

Project: http://git-wip-us.apache.org/repos/asf/incubator-edgent/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-edgent/commit/89252db6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-edgent/tree/89252db6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-edgent/diff/89252db6

Branch: refs/heads/develop
Commit: 89252db68de92b154d5841188d6bb133af526995
Parents: 39764b5
Author: Dale LaBossiere <dl...@us.ibm.com>
Authored: Mon Oct 30 10:01:17 2017 -0400
Committer: Dale LaBossiere <dl...@us.ibm.com>
Committed: Mon Oct 30 10:01:17 2017 -0400

----------------------------------------------------------------------
 Jenkinsfile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-edgent/blob/89252db6/Jenkinsfile
----------------------------------------------------------------------
diff --git a/Jenkinsfile b/Jenkinsfile
index a56ea86..6fa4b55 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -37,7 +37,7 @@ node('ubuntu') {
     } else {
         mavenLocalRepo = "-Dmaven.repo.local=.repository"
     }
-    def mavenFailureMode = "--fail-at-end"  // vs --fail-fast
+    def mavenFailureMode = "" // consider "--fail-at-end"? Odd ordering side effects?
 
     try {
         stage ('Cleanup') {
@@ -64,6 +64,9 @@ node('ubuntu') {
             sh "cd samples/template; ${mvnHome}/bin/mvn ${mavenFailureMode} ${mavenLocalRepo} clean package; ./run-app.sh"
             sh "cd samples/template; ${mvnHome}/bin/mvn ${mavenFailureMode} ${mavenLocalRepo} -Pplatform-java7 clean package; ./run-app.sh"
             sh "cd samples/template; ${mvnHome}/bin/mvn ${mavenFailureMode} ${mavenLocalRepo} -Pplatform-android clean package; ./run-app.sh"
+            
+            echo 'Verify get-edgent-jars'
+            sh "cd samples/get-edgent-jars; ./get-edgent-jars.sh"
         }
 
         stage ('Stage Site') {