Skip to content

Commit

Permalink
update config.ini to include jdk 21 + remove jdk swapping
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Oviedo <[email protected]>
  • Loading branch information
OVI3D0 committed Jan 27, 2025
1 parent ec150c0 commit 0dc012c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,12 @@ jobs:
java-version: '17'
- run: echo "JAVA17_HOME=$JAVA_HOME" >> $GITHUB_ENV

- name: Install JDK 21
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: '21'
- run: echo "JAVA21_HOME=$JAVA_HOME" >> $GITHUB_ENV

- name: Run the CI build script
run: bash .ci/build.sh run_it ${{ matrix.python-version }}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jdk.unbundled.release_url = https://artifacts.opensearch.org/releases/bundle/ope

docker_image=opensearchproject/opensearch
# major version of the JDK that is used to build OpenSearch
build.jdk = 17
build.jdk = 21
# list of JDK major versions that are used to run OpenSearch
runtime.jdk = 17,16,15,14,13,12,11,8
runtime.jdk.bundled = true
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jdk.unbundled.release_url = https://artifacts.opensearch.org/releases/bundle/ope

docker_image=opensearchproject/opensearch
# major version of the JDK that is used to build OpenSearch
build.jdk = 17
build.jdk = 21
# list of JDK major versions that are used to run OpenSearch
runtime.jdk = 17,16,15,14,13,12,11,8
runtime.jdk.bundled = true

0 comments on commit 0dc012c

Please sign in to comment.