Skip to content
Closed
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
4 changes: 4 additions & 0 deletions .github/workflows/analytics-engine-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@761e093b8c1349cc07f21c1d681d3b30bf9e1999 # main
with:
product: opensearch
# The analytics-engine native library (libopensearch_native.so from the feature-datafusion
# build) is compiled against glibc 2.28 and cannot dlopen on the default al2 ci-runner
# (glibc 2.26). almalinux8 ships glibc 2.28 and lets the node load it at boot.
platform: almalinux8

analytics-engine-compat:
needs: Get-CI-Image-Tag
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "3.9.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "3.10.0-SNAPSHOT")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
version_tokens = opensearch_version.tokenize('-')
Expand Down
Loading