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 worklows to use JDK 21.0.2 #436

Merged
merged 1 commit into from
Jan 24, 2024
Merged
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
8 changes: 3 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426
java: [11, 21.0.1]
java: [11, 21]
include:
- os: ubuntu-latest
java: 17
Expand Down Expand Up @@ -64,8 +63,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
# Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426
java: [11, 21.0.1]
java: [11, 21]
include:
- os: ubuntu-latest
java: 17
Expand All @@ -82,6 +80,6 @@ jobs:
run: |
./gradlew integTest yamlRestTest
- name: Multi Nodes Integration Testing
if: matrix.java == '21.0.1'
if: matrix.java == '21'
run: |
./gradlew integTest -PnumNodes=3
3 changes: 1 addition & 2 deletions .github/workflows/test_security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ jobs:
integ-test-with-security-linux:
strategy:
matrix:
# Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426
java: [11, 17, 21.0.1]
java: [11, 17, 21]

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