Skip to content

Commit

Permalink
Merge branch 'master' into tomf_GH-15584_fix_python_explain_re-rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfryda authored Jun 19, 2023
2 parents e588a71 + 5de60bd commit ab312da
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ systemProp.org.gradle.internal.http.connectionTimeout=300000
systemProp.org.gradle.internal.http.socketTimeout=300000
# Increase Xmx to 1G to enable full build (otherwise OOMs when building hadoop jars)
systemProp.org.gradle.jvmargs=-Xmx1024M
version=3.41.0
version=3.42.0
# Default build profile
profile=Java
# Branch codename
codename=bleeding_edge
codename=3.42.0
# Run findbugs
doFindbugs=false
# Run animal sniffer to verify compatibility of API with actual Java version
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ private boolean initXgboost() {
return true;
} catch (IOException e) {
// Ups no lib loaded or load failed
LOG.debug("Cause of the xgboost unsuccessful load", e);
LOG.warn("Cannot initialize XGBoost backend! " + XGBOOST_MIN_REQUIREMENTS);
return false;
}
Expand Down
8 changes: 4 additions & 4 deletions scripts/jenkins/groovy/defineTestStages.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def call(final pipelineContext) {
],
[
stageName: 'Py3.7 Medium-large', target: 'test-pyunit-medium-large', pythonVersion: '3.7',
timeoutValue: 210, component: pipelineContext.getBuildConfig().COMPONENT_PY
timeoutValue: 220, component: pipelineContext.getBuildConfig().COMPONENT_PY
],
[
stageName: 'Py3.7 X-large', target: 'test-pyunit-xlarge', pythonVersion: '3.7',
Expand Down Expand Up @@ -440,7 +440,7 @@ def call(final pipelineContext) {
],
[
stageName: 'Py3.6 Medium-large', target: 'test-pyunit-medium-large', pythonVersion: '3.6',
timeoutValue: 150, component: pipelineContext.getBuildConfig().COMPONENT_PY
timeoutValue: 160, component: pipelineContext.getBuildConfig().COMPONENT_PY
],
[
stageName: 'R3.3 Medium-large', target: 'test-r-medium-large', rVersion: '3.3.3',
Expand Down Expand Up @@ -522,7 +522,7 @@ def call(final pipelineContext) {
],
[
stageName: 'Py3.6 Medium-large', target: 'test-pyunit-medium-large', pythonVersion: '3.6',
timeoutValue: 150, component: pipelineContext.getBuildConfig().COMPONENT_PY
timeoutValue: 160, component: pipelineContext.getBuildConfig().COMPONENT_PY
],
[
stageName: 'Py3.7 Explain', target: 'test-pyunit-explain', pythonVersion: '3.7',
Expand All @@ -546,7 +546,7 @@ def call(final pipelineContext) {
],
[
stageName: 'Py3.9 Medium-large', target: 'test-pyunit-medium-large', pythonVersion: '3.9',
timeoutValue: 150, component: pipelineContext.getBuildConfig().COMPONENT_PY
timeoutValue: 160, component: pipelineContext.getBuildConfig().COMPONENT_PY
],
[ // These run with reduced number of file descriptors for early detection of FD leaks
stageName: 'XGBoost Stress tests', target: 'test-pyunit-xgboost-stress', pythonVersion: '3.6', timeoutValue: 40,
Expand Down

0 comments on commit ab312da

Please sign in to comment.