HBASE-27006 Move nightly integration testing to new larger test node class. (#4438)
This commit is contained in:
parent
487cf301a4
commit
76d20fc48a
|
@ -750,6 +750,11 @@ pipeline {
|
||||||
// See http://hbase.apache.org/book.html#maven.release
|
// See http://hbase.apache.org/book.html#maven.release
|
||||||
// TODO (HBASE-23870): replace this with invocation of the release tool
|
// TODO (HBASE-23870): replace this with invocation of the release tool
|
||||||
stage ('packaging and integration') {
|
stage ('packaging and integration') {
|
||||||
|
agent {
|
||||||
|
node {
|
||||||
|
label 'hbase-large'
|
||||||
|
}
|
||||||
|
}
|
||||||
tools {
|
tools {
|
||||||
maven 'maven_latest'
|
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.
|
// this needs to be set to the jdk that ought to be used to build releases on the branch the Jenkinsfile is stored in.
|
||||||
|
@ -760,6 +765,9 @@ pipeline {
|
||||||
BRANCH = "${env.BRANCH_NAME}"
|
BRANCH = "${env.BRANCH_NAME}"
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
|
dir('component') {
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
sh '''#!/bin/bash -e
|
sh '''#!/bin/bash -e
|
||||||
echo "Setting up directories"
|
echo "Setting up directories"
|
||||||
rm -rf "output-srctarball" && mkdir "output-srctarball"
|
rm -rf "output-srctarball" && mkdir "output-srctarball"
|
||||||
|
|
Loading…
Reference in New Issue