Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GA to use latest JDK-21 (#565) #568

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
12 changes: 4 additions & 8 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
needs: Get-CI-Image-Tag
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [11, 17, 21.0.1]
java: [11, 17, 21]
os: [ubuntu-latest]

name: Gradle Check Linux
Expand Down Expand Up @@ -57,8 +56,7 @@ jobs:
Check-neural-search-windows:
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [11, 17, 21.0.1]
java: [11, 17, 21]
os: [windows-latest]

name: Gradle Check Windows
Expand Down Expand Up @@ -86,8 +84,7 @@ jobs:
needs: Get-CI-Image-Tag
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [11, 17, 21.0.1]
java: [11, 17, 21]
os: [ubuntu-latest]

name: Pre-commit Linux
Expand Down Expand Up @@ -121,8 +118,7 @@ jobs:
Precommit-neural-search-windows:
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [11, 17, 21.0.1]
java: [11, 17, 21]
os: [windows-latest]

name: Pre-commit Windows
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
Restart-Upgrade-BWCTests-NeuralSearch:
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [ 11, 17, 21.0.1 ]
java: [ 11, 17, 21 ]
os: [ubuntu-latest,windows-latest]
bwc_version : ["2.9.0","2.10.0","2.11.0"]
opensearch_version : [ "2.12.0-SNAPSHOT" ]
Expand All @@ -41,8 +40,7 @@ jobs:
Rolling-Upgrade-BWCTests-NeuralSearch:
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [ 11, 17, 21.0.1 ]
java: [ 11, 17, 21 ]
os: [ubuntu-latest,windows-latest]
bwc_version: [ "2.11.0" ]
opensearch_version: [ "2.12.0-SNAPSHOT" ]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test_security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:
integ-test-with-security-linux:
strategy:
matrix:
# Restricting java 21 to 21.0.1 due to ongoing bug in JDK 21.0.2 https://bugs.openjdk.org/browse/JDK-8323659. Once the fix https://github.com/opensearch-project/OpenSearch/pull/11968 get merged this change will be reverted.
java: [11, 17, 21.0.1]
java: [11, 17, 21]

name: Run Integration Tests on Linux
runs-on: ubuntu-latest
Expand Down
Loading