You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by za...@apache.org on 2022/12/16 10:41:02 UTC

[calcite] branch main updated: [CALCITE-5433] Druid tests hang/fail intermittently in CI

This is an automated email from the ASF dual-hosted git repository.

zabetak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/main by this push:
     new 013f034dee [CALCITE-5433] Druid tests hang/fail intermittently in CI
013f034dee is described below

commit 013f034dee3e24083760b4695e2eacfbf592c2cb
Author: Stamatis Zampetakis <za...@gmail.com>
AuthorDate: Wed Dec 14 16:52:25 2022 +0100

    [CALCITE-5433] Druid tests hang/fail intermittently in CI
    
    Run Druid tests using JDK 17 to overcome DriverManager deadlock
    affecting JDK 8.
    
    Close apache/calcite#3004
---
 .github/workflows/main.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index abb8e43527..fd397a2405 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -410,13 +410,13 @@ jobs:
 
   linux-druid:
     if: github.event.action != 'labeled'
-    name: 'Linux (JDK 8) Druid Tests'
+    name: 'Druid Tests'
     runs-on: ubuntu-latest
     steps:
-    - name: 'Set up JDK 8'
+    - name: 'Set up JDK 17'
       uses: actions/setup-java@v2
       with:
-        java-version: 8
+        java-version: 17
         distribution: 'zulu'
     - name: 'Checkout Druid dataset'
       uses: actions/checkout@v3