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

morningman pushed a commit to branch new-mcp-server
in repository https://gitbox.apache.org/repos/asf/doris-mcp-server.git


The following commit(s) were added to refs/heads/new-mcp-server by this push:
     new 15ac275  ci: add test + build-check workflow for new-mcp-server (#174)
15ac275 is described below

commit 15ac27514ea2433703ac82b9a0d11b44008072ef
Author: steamEngine <[email protected]>
AuthorDate: Fri Jul 31 16:38:42 2026 +0800

    ci: add test + build-check workflow for new-mcp-server (#174)
    
    Single job: offline unit tests + linux-x64 build check on pushes and
    PRs to new-mcp-server. Build outputs are discarded - no artifacts,
    no releases.
---
 .github/workflows/ci.yml | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..242f1ae
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,37 @@
+# =============================================================================
+# CI — basic verification for the new-mcp-server branch
+#
+#   Triggers: push / pull_request to new-mcp-server
+#
+#   Single job: offline unit tests + linux-x64 build check.
+#   Build outputs are discarded — no artifacts are uploaded and no
+#   releases are created by this workflow.
+# =============================================================================
+name: CI
+
+on:
+  pull_request:
+    branches: [new-mcp-server]
+  push:
+    branches: [new-mcp-server]
+
+jobs:
+  ci:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v4
+
+      - uses: actions/setup-python@v5
+        with:
+          python-version: "3.10"
+
+      - name: Install dependencies
+        run: python -m pip install --quiet -r requirements.txt
+
+      - name: Offline tests
+        run: bash test/run_all_tests.sh --offline
+
+      - name: Build check
+        env:
+          VERSION: ci
+        run: ./build.sh linux-x64


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to