This is an automated email from the ASF dual-hosted git repository. abhishekrb pushed a commit to branch try_latest_21_jdk in repository https://gitbox.apache.org/repos/asf/druid.git
commit a7f9728f4809352ee40c8efefb115dd7b9332b3a Author: Abhishek Balaji Radhakrishnan <[email protected]> AuthorDate: Wed Jun 11 20:04:30 2025 -0700 Try running JDK 21 workflows with latest JDK (21.0.7 as of April 2025). Effectively another attempt at https://github.com/apache/druid/pull/17694 but it was reverted in https://github.com/apache/druid/pull/17806 due to sporadic segfaults seen with JDK 21.0.6. --- .github/workflows/ci.yml | 2 +- .github/workflows/static-checks.yml | 3 +-- .github/workflows/unit-and-integration-tests-unified.yml | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70da61e9449..b8bc0c69fbb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: strategy: fail-fast: false matrix: - jdk: [ "11", "21.0.4" ] + jdk: [ "11", "21" ] pattern: [ "A*,G*,R*", "B*,O*,S*,X*,Y*,Z*", "C*,E*", "D*,J*,K*", "F*,H*,U*", "I*,N*,T*", "L*,Q*,W*", "M*,P*,V*"] uses: ./.github/workflows/worker.yml with: diff --git a/.github/workflows/static-checks.yml b/.github/workflows/static-checks.yml index ee93ad2f581..c67d070a5c8 100644 --- a/.github/workflows/static-checks.yml +++ b/.github/workflows/static-checks.yml @@ -41,8 +41,7 @@ jobs: strategy: fail-fast: false matrix: - # Use JDK 21.0.4 to work around https://github.com/apache/druid/issues/17429 - java: [ '11', '17', '21.0.4' ] + java: [ '11', '17', '21' ] runs-on: ubuntu-latest steps: - name: checkout branch diff --git a/.github/workflows/unit-and-integration-tests-unified.yml b/.github/workflows/unit-and-integration-tests-unified.yml index 131029f9fdd..58a51d24f82 100644 --- a/.github/workflows/unit-and-integration-tests-unified.yml +++ b/.github/workflows/unit-and-integration-tests-unified.yml @@ -79,8 +79,7 @@ jobs: strategy: fail-fast: false matrix: - # Use JDK 21.0.4 to work around https://github.com/apache/druid/issues/17429 - jdk: [ '11', '17', '21.0.4' ] + jdk: [ '11', '17', '21' ] runs-on: ubuntu-latest steps: - name: Checkout branch --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
