This is an automated email from the ASF dual-hosted git repository.
busbey pushed a commit to branch branch-2.4
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.4 by this push:
new 7b555523886 HBASE-27006 Move nightly integration testing to new larger
test node class. (#4438)
7b555523886 is described below
commit 7b555523886d7d0de7a81938107e02b87cd4ce32
Author: Sean Busbey <[email protected]>
AuthorDate: Wed May 18 14:18:49 2022 -0500
HBASE-27006 Move nightly integration testing to new larger test node class.
(#4438)
(cherry picked from commit 76d20fc48afc48b2e496c8aea830c46f76974a20)
---
dev-support/Jenkinsfile | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index f03522b389b..09f2778c7dd 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -747,6 +747,11 @@ pipeline {
// See http://hbase.apache.org/book.html#maven.release
// TODO (HBASE-23870): replace this with invocation of the release tool
stage ('packaging and integration') {
+ agent {
+ node {
+ label 'hbase-large'
+ }
+ }
tools {
maven 'maven_latest'
// this needs to be set to the jdk that ought to be used to build
releases on the branch the Jenkinsfile is stored in.
@@ -757,6 +762,9 @@ pipeline {
BRANCH = "${env.BRANCH_NAME}"
}
steps {
+ dir('component') {
+ checkout scm
+ }
sh '''#!/bin/bash -e
echo "Setting up directories"
rm -rf "output-srctarball" && mkdir "output-srctarball"