Skip to content

Commit

Permalink
[AUTO] Increment version to 1.3.15-SNAPSHOT (#1350)
Browse files Browse the repository at this point in the history
* Increment version to 1.3.15-SNAPSHOT

Signed-off-by: opensearch-ci-bot <[email protected]>

* Fix Failing Windows CI

Signed-off-by: Naveen Tatikonda <[email protected]>

* Remove JDK 8 from CI

Signed-off-by: Naveen Tatikonda <[email protected]>

---------

Signed-off-by: opensearch-ci-bot <[email protected]>
Signed-off-by: Naveen Tatikonda <[email protected]>
Co-authored-by: opensearch-ci-bot <[email protected]>
Co-authored-by: Naveen Tatikonda <[email protected]>
  • Loading branch information
3 people authored Mar 1, 2024
1 parent 2740d97 commit 51d257e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
Build-k-NN:
strategy:
matrix:
java: [8, 11, 14]
java: [ 11, 14 ]

name: Build and Test k-NN Plugin
runs-on: ubuntu-latest
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
Build-k-NN-Windows:
strategy:
matrix:
java: [ 8, 11, 14 ]
java: [ 11, 14 ]

name: Build and Test k-NN Plugin on Windows
runs-on: windows-latest
Expand All @@ -73,6 +73,7 @@ jobs:
- name: Add MinGW to PATH
run: |
echo "C:/Users/runneradmin/scoop/apps/mingw/current/bin" >> $env:GITHUB_PATH
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
refreshenv
- name: Download OpenBLAS
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import org.apache.tools.ant.taskdefs.condition.Os

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "1.3.14-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "1.3.15-SNAPSHOT")
knn_bwc_version = System.getProperty("bwc.version", "1.2.0.0-SNAPSHOT")
opensearch_bwc_version = "${knn_bwc_version}" - ".0-SNAPSHOT"
opensearch_group = "org.opensearch"
Expand Down Expand Up @@ -453,7 +453,7 @@ afterEvaluate {

requires('opensearch', versions.opensearch, EQUAL)
//TODO: Use default knn lib version for now, fix will be compare with version that is used in build step.
requires("opensearch-knnlib", "1.3.14.0", EQUAL)
requires("opensearch-knnlib", "1.3.15.0", EQUAL)
packager = 'Amazon'
vendor = 'Amazon'
os = 'LINUX'
Expand Down
2 changes: 1 addition & 1 deletion jni/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ else()
endif()

if(NOT KNN_PLUGIN_VERSION)
set(KNN_PLUGIN_VERSION "1.3.14.0")
set(KNN_PLUGIN_VERSION "1.3.15.0")
endif()

# Set architecture specific variables
Expand Down

0 comments on commit 51d257e

Please sign in to comment.