Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pipeline {

stage('BuildAndTest') {
options {
timeout(time: 9, unit: 'HOURS')
timeout(time: 11, unit: 'HOURS')
}
steps {
dir("HBASE_${HBASE_PROFILE}") {
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.github
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pipeline {
// N.B. this is per-branch, which means per PR
disableConcurrentBuilds()
buildDiscarder(logRotator(daysToKeepStr: '15', artifactDaysToKeepStr: '5'))
timeout (time: 9, unit: 'HOURS')
timeout (time: 11, unit: 'HOURS')
timestamps()
skipDefaultCheckout()
}
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.yetus
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pipeline {
}

options {
timeout(time: 9, unit: 'HOURS')
timeout(time: 11, unit: 'HOURS')
}

steps {
Expand Down
2 changes: 1 addition & 1 deletion phoenix-hbase-compat-2.6.4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<description>Compatibility module for HBase 2.6.4+</description>

<properties>
<hbase26.compat.version>2.6.4-hadoop3</hbase26.compat.version>
<hbase26.compat.version>2.6.5-hadoop3</hbase26.compat.version>
</properties>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@
<!-- The default hbase versions to build with (override with hbase.version) -->
<hbase-2.5.0.runtime.version>2.5.3-hadoop3</hbase-2.5.0.runtime.version>
<hbase-2.5.4.runtime.version>2.5.10-hadoop3</hbase-2.5.4.runtime.version>
<hbase-2.5.runtime.version>2.5.13-hadoop3</hbase-2.5.runtime.version>
<hbase-2.5.runtime.version>2.5.14-hadoop3</hbase-2.5.runtime.version>
<hbase-2.6.0.runtime.version>2.6.1-hadoop3</hbase-2.6.0.runtime.version>
<hbase-2.6.3.runtime.version>2.6.3-hadoop3</hbase-2.6.3.runtime.version>
<hbase-2.6.runtime.version>2.6.4-hadoop3</hbase-2.6.runtime.version>
<hbase-2.6.runtime.version>2.6.5-hadoop3</hbase-2.6.runtime.version>

<compileSource>1.8</compileSource>
<maven.compiler.source>${compileSource}</maven.compiler.source>
Expand Down