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 7dcee89  Remove disallowed  block
7dcee89 is described below

commit 7dcee893cd31c5344f7a6d20dc800a9c6b3dac5f
Author: Adam Kocoloski <[email protected]>
AuthorDate: Sun Jan 16 22:06:20 2022 -0500

    Remove disallowed  block
---
 build-aux/Jenkinsfile.full | 28 +++++++++++++---------------
 1 file changed, 13 insertions(+), 15 deletions(-)

diff --git a/build-aux/Jenkinsfile.full b/build-aux/Jenkinsfile.full
index 78057d2..5e96bfc 100644
--- a/build-aux/Jenkinsfile.full
+++ b/build-aux/Jenkinsfile.full
@@ -165,21 +165,19 @@ def generateContainerStage(platform) {
         timeout(time: 90, unit: "MINUTES") {
           docker.withRegistry('https://docker.io/', 'dockerhub_creds') {
             docker.image(meta[platform].image).inside("${DOCKER_ARGS}") {
-              stages {
-                stage('Build from tarball & test') {
-                  sh( script: 'rm -rf apache-couchdb-*', label: 'Clean 
workspace' )
-                  unstash 'tarball'
-                  sh( script: unpack, label: 'Unpack tarball' )
-                  dir( "${platform}/build/couchdb" ) {
-                    sh 'pwd'
-                    sh 'ls -l'
-                    sh "./configure --skip-deps --spidermonkey-version 
${meta[platform].spidermonkey_vsn}"
-                    sh 'make'
-                    sh 'make eunit'
-                    sh 'make elixir-suite'
-                    sh 'make exunit'
-                    sh 'make mango-test'
-                  }
+              stage('Build from tarball & test') {
+                sh( script: 'rm -rf apache-couchdb-*', label: 'Clean 
workspace' )
+                unstash 'tarball'
+                sh( script: unpack, label: 'Unpack tarball' )
+                dir( "${platform}/build/couchdb" ) {
+                  sh 'pwd'
+                  sh 'ls -l'
+                  sh "./configure --skip-deps --spidermonkey-version 
${meta[platform].spidermonkey_vsn}"
+                  sh 'make'
+                  sh 'make eunit'
+                  sh 'make elixir-suite'
+                  sh 'make exunit'
+                  sh 'make mango-test'
                 }
               }
             }

Reply via email to