Skip to content

Commit

Permalink
HSEARCH-4850 Run tests against OpenSearch 2.7 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-bekhta authored and yrodiere committed May 3, 2023
1 parent 47f0ac6 commit f54229f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,8 @@ stage('Configure') {
new OpenSearchLocalBuildEnvironment(version: '2.3.0', condition: TestCondition.ON_DEMAND),
new OpenSearchLocalBuildEnvironment(version: '2.4.1', condition: TestCondition.ON_DEMAND),
new OpenSearchLocalBuildEnvironment(version: '2.5.0', condition: TestCondition.ON_DEMAND),
new OpenSearchLocalBuildEnvironment(version: '2.6.0', condition: TestCondition.AFTER_MERGE)
new OpenSearchLocalBuildEnvironment(version: '2.6.0', condition: TestCondition.ON_DEMAND),
new OpenSearchLocalBuildEnvironment(version: '2.7.0', condition: TestCondition.AFTER_MERGE)
// See https://opensearch.org/lines/2x.html for a list of all 2.x versions
],
esAws: [
Expand Down Expand Up @@ -955,4 +956,4 @@ String toTestJdkArg(BuildEnvironment buildEnv) {
}

return args
}
}
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,13 +230,13 @@
<version.org.elasticsearch.latest>8.7.1</version.org.elasticsearch.latest>
<!-- The versions of OpenSearch advertised as compatible with Hibernate Search -->
<!-- Make sure to only mention tested versions here -->
<version.org.opensearch.compatible.regularly-tested.text>1.3 or 2.6</version.org.opensearch.compatible.regularly-tested.text>
<version.org.opensearch.compatible.regularly-tested.text>1.3 or 2.7</version.org.opensearch.compatible.regularly-tested.text>
<!-- These are the versions same as above, but pointing only to the major part (used in compatibility section of ES backend documentation
as versions that Hibernate Search is compatible with. -->
<!-- NOTE: Adding new major versions would require to update the compatibility table in `backend-elasticsearch-compatibility` section of `backend-elasticsearch.asciidoc`. -->
<version.org.opensearch.compatible.expected.text>1.x or 2.x</version.org.opensearch.compatible.expected.text>
<!-- The latest version of OpenSearch tested against by default -->
<version.org.opensearch.latest>2.6.0</version.org.opensearch.latest>
<version.org.opensearch.latest>2.7.0</version.org.opensearch.latest>

<version.com.google.code.gson>2.9.1</version.com.google.code.gson>
<version.software.amazon.awssdk>2.20.2</version.software.amazon.awssdk>
Expand Down

0 comments on commit f54229f

Please sign in to comment.