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/15 18:16:08 UTC

[couchdb] branch jenkins-bump-erlang-and-debian-versions updated: Fix stages nesting

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

kocolosk pushed a commit to branch jenkins-bump-erlang-and-debian-versions
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/jenkins-bump-erlang-and-debian-versions by this push:
     new b94e39f  Fix stages nesting
b94e39f is described below

commit b94e39fe7982fbee5eca03da3e9a71eb414eace5
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Sat Jan 15 13:16:00 2022 -0500

    Fix stages nesting
---
 build-aux/Jenkinsfile.full | 38 ++++++++++++++++++++------------------
 1 file changed, 20 insertions(+), 18 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 0615909..1a7959c 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -260,27 +260,29 @@ pipeline {
               }
             }
 
-            stage('Build from tarball & test') {
-              steps {
-                unstash 'tarball'
-                sh( script: build_and_test )
-              }
-              post {
-                always {
-                  junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
+            stages {
+              stage('Build from tarball & test') {
+                steps {
+                  unstash 'tarball'
+                  sh( script: build_and_test )
+                }
+                post {
+                  always {
+                    junit '**/.eunit/*.xml, **/_build/*/lib/couchdbtest/*.xml, **/src/mango/nosetests.xml, **/test/javascript/junit.xml'
+                  }
                 }
               }
-            }
 
-            stage('Build CouchDB packages') {
-              steps {
-                unstash 'tarball'
-                sh( script: make_packages )
-                sh( script: cleanup_and_save )
-              }
-              post {
-                success {
-                  archiveArtifacts artifacts: 'pkgs/**', fingerprint: true
+              stage('Build CouchDB packages') {
+                steps {
+                  unstash 'tarball'
+                  sh( script: make_packages )
+                  sh( script: cleanup_and_save )
+                }
+                post {
+                  success {
+                    archiveArtifacts artifacts: 'pkgs/**', fingerprint: true
+                  }
                 }
               }
             }