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

benw pushed a commit to branch javax
in repository https://gitbox.apache.org/repos/asf/tapestry-5.git


The following commit(s) were added to refs/heads/javax by this push:
     new 11e2cd86a TAP5-2819: Jenkinsfile fix stage nesting
11e2cd86a is described below

commit 11e2cd86a7b8b5884968297887f674e002215ced
Author: Ben Weidig <[email protected]>
AuthorDate: Sat Apr 4 16:55:52 2026 +0200

    TAP5-2819: Jenkinsfile fix stage nesting
---
 Jenkinsfile | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 7f2b4a95c..60d199cce 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -76,26 +76,26 @@ pipeline {
                     }
                 }
             }
+        }
 
-            // -- 03: JavaDoc Generation 
-------------------------------------------
+        // -- 03: JavaDoc Generation 
-------------------------------------------
 
-            stage('Aggregate Javadoc') {
-                agent { node { label 'ubuntu' } }
-                tools {
-                    jdk 'jdk_21_latest'
-                }
-                steps {
-                    sh './gradlew aggregateJavadoc'
-                }
-                post {
-                    always {
-                        publishHTML(target: [
-                            reportDir:   'build/documentation/javadocs',
-                            reportFiles: 'index.html',
-                            reportName:  'Aggregate Javadoc',
-                            keepAll:     true
-                        ])
-                    }
+        stage('Aggregate Javadoc') {
+            agent { node { label 'ubuntu' } }
+            tools {
+                jdk 'jdk_21_latest'
+            }
+            steps {
+                sh './gradlew aggregateJavadoc'
+            }
+            post {
+                always {
+                    publishHTML(target: [
+                        reportDir:   'build/documentation/javadocs',
+                        reportFiles: 'index.html',
+                        reportName:  'Aggregate Javadoc',
+                        keepAll:     true
+                    ])
                 }
             }
         }

Reply via email to