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

zhangduo pushed a commit to branch HBASE-29930
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/HBASE-29930 by this push:
     new 190cd67ada9 fix
190cd67ada9 is described below

commit 190cd67ada947f0ca6ae60f94ec8795b17237323
Author: Duo Zhang <[email protected]>
AuthorDate: Sat Feb 28 15:42:24 2026 +0800

    fix
---
 dev-support/integration-test/integration-test.Jenkinsfile | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-support/integration-test/integration-test.Jenkinsfile 
b/dev-support/integration-test/integration-test.Jenkinsfile
index a34802c30f8..a8b550f17a8 100644
--- a/dev-support/integration-test/integration-test.Jenkinsfile
+++ b/dev-support/integration-test/integration-test.Jenkinsfile
@@ -23,6 +23,13 @@ pipeline {
     booleanParam(name: 'DEBUG', defaultValue: false, description: 'Produce a 
lot more meta-information.')
   }
   stages {
+    stage ('scm-checkout') {
+      steps {
+        dir('component') {
+          checkout scm
+        }
+      }
+    }
     // This is meant to mimic what a release manager will do to create RCs.
     // See http://hbase.apache.org/book.html#maven.release
     // TODO (HBASE-23870): replace this with invocation of the release tool
@@ -31,9 +38,6 @@ pipeline {
         BASEDIR = "${env.WORKSPACE}/component"
       }
       steps {
-        dir('component') {
-          checkout scm
-        }
         sh '''#!/bin/bash -e
           echo "Setting up directories"
           rm -rf "output-srctarball" && mkdir "output-srctarball"

Reply via email to