From 93d3112efa95a3d318fef0f04b704cb6101a1432 Mon Sep 17 00:00:00 2001 From: Navneet Verma Date: Fri, 2 Aug 2024 00:27:50 -0700 Subject: [PATCH] Removed JDK 11 and 17 version from CI runs (#1921) Signed-off-by: Navneet Verma --- .github/workflows/CI.yml | 6 +++--- .../workflows/backwards_compatibility_tests_workflow.yml | 4 ++-- .github/workflows/maven-publish.yml | 2 +- CHANGELOG.md | 1 + 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3e04f3724..a5d21e56c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -42,7 +42,7 @@ jobs: Build-k-NN-Linux: strategy: matrix: - java: [11, 17, 21] + java: [21] name: Build and Test k-NN Plugin on Linux runs-on: ubuntu-latest @@ -91,7 +91,7 @@ jobs: Build-k-NN-MacOS: strategy: matrix: - java: [ 11, 17, 21 ] + java: [ 21 ] name: Build and Test k-NN Plugin on MacOS needs: Get-CI-Image-Tag @@ -131,7 +131,7 @@ jobs: Build-k-NN-Windows: strategy: matrix: - java: [ 11, 17, 21 ] + java: [ 21 ] name: Build and Test k-NN Plugin on Windows needs: Get-CI-Image-Tag diff --git a/.github/workflows/backwards_compatibility_tests_workflow.yml b/.github/workflows/backwards_compatibility_tests_workflow.yml index 5092cd170..90a20eda8 100644 --- a/.github/workflows/backwards_compatibility_tests_workflow.yml +++ b/.github/workflows/backwards_compatibility_tests_workflow.yml @@ -33,7 +33,7 @@ jobs: Restart-Upgrade-BWCTests-k-NN: strategy: matrix: - java: [ 11, 17 ] + java: [ 21 ] os: [ubuntu-latest] bwc_version : [ "2.0.1", "2.1.0", "2.2.1", "2.3.0", "2.4.1", "2.5.0", "2.6.0", "2.7.0", "2.8.0", "2.9.0", "2.10.0", "2.11.0", "2.12.0", "2.13.0", "2.14.0", "2.15.0", "2.16.0-SNAPSHOT"] opensearch_version : [ "3.0.0-SNAPSHOT" ] @@ -112,7 +112,7 @@ jobs: Rolling-Upgrade-BWCTests-k-NN: strategy: matrix: - java: [ 11, 17 ] + java: [ 21 ] os: [ubuntu-latest] bwc_version: [ "2.16.0-SNAPSHOT" ] opensearch_version: [ "3.0.0-SNAPSHOT" ] diff --git a/.github/workflows/maven-publish.yml b/.github/workflows/maven-publish.yml index 724e3a213..644342c78 100644 --- a/.github/workflows/maven-publish.yml +++ b/.github/workflows/maven-publish.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/setup-java@v3 with: distribution: temurin # Temurin is a distribution of adoptium - java-version: 11 + java-version: 21 - uses: actions/checkout@v3 - uses: aws-actions/configure-aws-credentials@v1 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 64201441e..56becbeeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Enhancements ### Bug Fixes ### Infrastructure +* Removed JDK 11 and 17 version from CI runs [#1921](https://github.com/opensearch-project/k-NN/pull/1921) ### Documentation ### Maintenance ### Refactoring