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

yuqi4733 pushed a commit to branch revert-8062-issue_8061
in repository https://gitbox.apache.org/repos/asf/gravitino.git

commit 7513aa73156d2a0505e808c91ff3899dabf4de92
Author: Mini Yu <[email protected]>
AuthorDate: Mon Aug 18 20:46:07 2025 +0800

    Revert "[#8061] improvement(mcp-server): Add a CI pipeline to build module 
`m…"
    
    This reverts commit 8c0ef5b2a29868e7dfb4198532de6ac07877109f.
---
 .github/workflows/build.yml | 68 ++++++++++++++-------------------------------
 1 file changed, 21 insertions(+), 47 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 05abd9d7fc..2a0c68e483 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -23,39 +23,31 @@ jobs:
         with:
           filters: |
             source_changes:
-              included:
-                - '.github/**'
-                - 'catalogs/**'
-                - 'clients/**'
-                - 'conf/**'
-                - 'dev/**'
-                - 'docs/open-api/**'
-                - 'gradle/**'
-                - 'gradle.properties'
-                - 'meta/**'
-                - 'scripts/**'
-                - 'web/**'
-                - '**/*.java'
-                - '**/*.kts'
-                - '**/*.py'
-                - '**/*.rs'
-                - '**/resources/**'
-                - '**/src/**'
-              excluded:
-                - 'mcp-server/**'
-                - '**/*.md'
-                - '**/*.png'
-                - '**/*.svg'
-  
+              - '.github/**'
+              - 'catalogs/**'
+              - 'clients/**'
+              - 'conf/**'
+              - 'dev/**'
+              - 'docs/open-api/**'
+              - 'gradle/**'
+              - 'gradle.properties'
+              - 'meta/**'
+              - 'scripts/**'
+              - 'web/**'
+              - '**/*.java'
+              - '**/*.kts'
+              - '**/*.py'
+              - '**/*.rs'
+              - '**/resources/**'
+              - '**/src/**'
+              - '!**/*.md'
+              - '!**/*.png'
+              - '!**/*.svg'
             spark_connector_changes:
               - spark-connector/**
-            
-            mcp_server_changes:
-              - mcp-server/**
     outputs:
       source_changes: ${{ steps.filter.outputs.source_changes }}
       spark_connector_changes: ${{ 
steps.filter.outputs.spark_connector_changes }}
-      mcp_server_changes: ${{ steps.filter.outputs.mcp_server_changes }}
 
   compile-check:
     runs-on: ubuntu-latest
@@ -71,7 +63,7 @@ jobs:
           cache: 'gradle'
 
       - name: Build with Gradle
-        run: ./gradlew build -x test -PjdkVersion=17
+        run: ./gradlew build -x test -PjdkVersion=8
 
   # To check the spark-connector is compatible with scala2.13
   spark-connector-build:
@@ -106,24 +98,6 @@ jobs:
             build/reports
             spark-connector/**/*.log
 
-  mcp-server-build:
-    needs: changes
-    if: needs.changes.outputs.mcp_server_changes == 'true'
-    runs-on: ubuntu-latest
-    timeout-minutes: 30
-    steps:
-      - uses: actions/checkout@v4
-
-      - uses: actions/setup-java@v4
-        with:
-          java-version: 17
-          distribution: 'temurin'
-          cache: 'gradle'
-
-      - name: Build MCP Server
-        run: |
-          ./gradlew :mcp-server:build           
-
   build:
     # The type of runner that the job will run on
     runs-on: ubuntu-latest

Reply via email to