This is an automated email from the ASF dual-hosted git repository. kgyrtkirk pushed a commit to branch revert-17694-new-jdk21 in repository https://gitbox.apache.org/repos/asf/druid.git
commit d3b9516a5a7d93c5be4607cc9458907ad82847ea Author: Zoltan Haindrich <[email protected]> AuthorDate: Fri Feb 7 09:04:52 2025 +0100 Revert "Run JDK 21 workflows with latest JDK. (#17694)" This reverts commit 31ede5cb0f0a6c4a7c58def8a3622a4d00f1f029. --- .github/workflows/static-checks.yml | 3 ++- .github/workflows/unit-and-integration-tests-unified.yml | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static-checks.yml b/.github/workflows/static-checks.yml index 5f9fd7b4d60..6a149a46a6d 100644 --- a/.github/workflows/static-checks.yml +++ b/.github/workflows/static-checks.yml @@ -41,7 +41,8 @@ jobs: strategy: fail-fast: false matrix: - java: [ '11', '17', '21' ] + # Use JDK 21.0.4 to work around https://github.com/apache/druid/issues/17429 + java: [ '11', '17', '21.0.4' ] 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 6126c38cb67..f5b79853642 100644 --- a/.github/workflows/unit-and-integration-tests-unified.yml +++ b/.github/workflows/unit-and-integration-tests-unified.yml @@ -79,7 +79,8 @@ jobs: strategy: fail-fast: false matrix: - jdk: [ '11', '17', '21' ] + # Use JDK 21.0.4 to work around https://github.com/apache/druid/issues/17429 + jdk: [ '11', '17', '21.0.4' ] runs-on: ubuntu-latest steps: - name: Checkout branch @@ -210,7 +211,8 @@ jobs: strategy: fail-fast: false matrix: - jdk: [ '11', '21' ] + # Use JDK 21.0.4 to work around https://github.com/apache/druid/issues/17429 + jdk: [ '11', '21.0.4' ] name: "unit tests (jdk${{ matrix.jdk }})" uses: ./.github/workflows/unit-tests.yml needs: [unit-tests-unapproved, check-approval] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
