You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kyuubi.apache.org by bo...@apache.org on 2023/01/19 12:49:04 UTC

[kyuubi] branch ci-ubuntu-latest created (now d57ec577f)

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

bowenliang pushed a change to branch ci-ubuntu-latest
in repository https://gitbox.apache.org/repos/asf/kyuubi.git


      at d57ec577f make all CI jobs run on `ubuntu-latest`

This branch includes the following new commits:

     new d57ec577f make all CI jobs run on `ubuntu-latest`

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[kyuubi] 01/01: make all CI jobs run on `ubuntu-latest`

Posted by bo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bowenliang pushed a commit to branch ci-ubuntu-latest
in repository https://gitbox.apache.org/repos/asf/kyuubi.git

commit d57ec577fb84cbf135e0684bfa413abacc9b3386
Author: liangbowen <li...@gf.com.cn>
AuthorDate: Thu Jan 19 20:48:53 2023 +0800

    make all CI jobs run on `ubuntu-latest`
---
 .github/workflows/dep.yml              |  2 +-
 .github/workflows/docker-image.yml     |  2 +-
 .github/workflows/license.yml          |  2 +-
 .github/workflows/master.yml           | 20 ++++++++++----------
 .github/workflows/nightly.yml          |  2 +-
 .github/workflows/publish-snapshot.yml |  2 +-
 .github/workflows/style.yml            |  4 ++--
 .github/workflows/web-ui.yml           |  2 +-
 8 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/.github/workflows/dep.yml b/.github/workflows/dep.yml
index 5ea4447cc..26c41cfc4 100644
--- a/.github/workflows/dep.yml
+++ b/.github/workflows/dep.yml
@@ -33,7 +33,7 @@ concurrency:
 jobs:
   dep:
     name: Dependency check
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
       - name: setup java
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
index b403e46b5..08ee9f0ca 100644
--- a/.github/workflows/docker-image.yml
+++ b/.github/workflows/docker-image.yml
@@ -26,7 +26,7 @@ jobs:
   push_to_registry:
     name: Push Docker image to Docker Hub
     if: ${{ startsWith(github.repository, 'apache/') }}
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     concurrency:
       # this group should be global unique
       group: push-docker-image
diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml
index 73ef05864..be13decb3 100644
--- a/.github/workflows/license.yml
+++ b/.github/workflows/license.yml
@@ -32,7 +32,7 @@ concurrency:
 jobs:
   rat:
     name: License
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
       - name: Setup JDK 8
diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 6bb2658ef..e96e4479b 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -37,7 +37,7 @@ env:
 jobs:
   default:
     name: Kyuubi and Spark Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
@@ -103,7 +103,7 @@ jobs:
 
   authz:
     name: Kyuubi-AuthZ and Spark Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
@@ -142,7 +142,7 @@ jobs:
 
   flink-it:
     name: Flink Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
@@ -201,7 +201,7 @@ jobs:
 
   hive-it:
     name: Hive Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
@@ -235,7 +235,7 @@ jobs:
 
   jdbc-it:
     name: JDBC Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
@@ -270,7 +270,7 @@ jobs:
 
   trino-it:
     name: Trino Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
@@ -305,7 +305,7 @@ jobs:
 
   tpch-tpcds:
     name: TPC-H and TPC-DS Tests
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     env:
       SPARK_LOCAL_IP: localhost
     steps:
@@ -329,7 +329,7 @@ jobs:
 
   kyuubi-on-k8s-it:
     name: Kyuubi Server On Kubernetes Integration Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - name: Checkout
         uses: actions/checkout@v3
@@ -390,7 +390,7 @@ jobs:
 
   spark-on-k8s-it:
     name: Spark Engine On Kubernetes Integration Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - name: Checkout
         uses: actions/checkout@v3
@@ -433,7 +433,7 @@ jobs:
 
   zookeeper-it:
     name: Zookeeper Integration Test
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 149da6d82..e2b623b28 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -25,7 +25,7 @@ jobs:
   build:
     name: Build
     if: ${{ startsWith(github.repository, 'apache/') }}
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       matrix:
         profiles:
diff --git a/.github/workflows/publish-snapshot.yml b/.github/workflows/publish-snapshot.yml
index acd04bfab..1a61e2310 100644
--- a/.github/workflows/publish-snapshot.yml
+++ b/.github/workflows/publish-snapshot.yml
@@ -24,7 +24,7 @@ on:
 jobs:
   publish-snapshot:
     if: ${{ startsWith(github.repository, 'apache/') }}
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       fail-fast: false
       matrix:
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml
index c848a2f8c..4ef0753c0 100644
--- a/.github/workflows/style.yml
+++ b/.github/workflows/style.yml
@@ -30,7 +30,7 @@ concurrency:
 jobs:
   linter:
     name: Style check
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     strategy:
       matrix:
         profiles:
@@ -103,7 +103,7 @@ jobs:
 
   shellcheck:
     name: Shellcheck
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - uses: actions/checkout@v3
       - name: check bin directory
diff --git a/.github/workflows/web-ui.yml b/.github/workflows/web-ui.yml
index 08c97cfc9..accbd93b0 100644
--- a/.github/workflows/web-ui.yml
+++ b/.github/workflows/web-ui.yml
@@ -17,7 +17,7 @@ concurrency:
 jobs:
   web-ui:
     name: Kyuubi Web UI check
-    runs-on: ubuntu-22.04
+    runs-on: ubuntu-latest
     steps:
       - name: checkout
         uses: actions/checkout@v3