You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2022/01/17 00:13:10 UTC

[couchdb] branch jenkins-dynamic-matrix updated: More elimination of declarative bits

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

kocolosk pushed a commit to branch jenkins-dynamic-matrix
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-dynamic-matrix by this push:
     new f192ef5  More elimination of declarative bits
f192ef5 is described below

commit f192ef584eb09d6613908be5e58c700841dc1c6e
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sun Jan 16 19:12:58 2022 -0500

    More elimination of declarative bits
---
 build-aux/Jenkinsfile.full | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 97e89f2..3b16110 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -120,7 +120,7 @@ def generateNativeStage(platform) {
 
       node(platform) {
         timeout(time: 90, unit: "MINUTES") {
-          steps {
+          // steps {
             // deleteDir is OK here because we're not inside of a Docker container!
             deleteDir()
             unstash 'tarball'
@@ -137,22 +137,22 @@ def generateNativeStage(platform) {
                 sh '$MAKE mango-test'
               }
             }
-          }
-
-          post {
-            always {
-              junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
-            }
-            failure {
-              dir( "${platform}/build/couchdb" ) {
-                sh 'make build-report'
-              }
-            }
-            cleanup {
-              sh 'killall -9 beam.smp || true'
-              sh 'rm -rf ${WORKSPACE}/* ${COUCHDB_IO_LOG_DIR} || true'
-            }
-          }
+          // }
+
+          // post {
+          //   always {
+          //     junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
+          //   }
+          //   failure {
+          //     dir( "${platform}/build/couchdb" ) {
+          //       sh 'make build-report'
+          //     }
+          //   }
+          //   cleanup {
+          //     sh 'killall -9 beam.smp || true'
+          //     sh 'rm -rf ${WORKSPACE}/* ${COUCHDB_IO_LOG_DIR} || true'
+          //   }
+          // }
         }
       }
     }