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

imbajin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hugegraph-toolchain.git

commit ea1984362f4e0789d70f05965e773e037e77394a
Author: dark <[email protected]>
AuthorDate: Sat Aug 29 23:11:44 2026 +0800

    fix(ci): remove temporary server overrides
    
    - keep the integration baseline on Apache master
    - fetch and cache one exact commit
    - remove redundant version and fork overrides
---
 .github/workflows/hubble-ci.yml                               | 11 -----------
 .../hubble-dist/assembly/travis/download-hugegraph.sh         |  2 +-
 2 files changed, 1 insertion(+), 12 deletions(-)

diff --git a/.github/workflows/hubble-ci.yml b/.github/workflows/hubble-ci.yml
index 95c878045..db2ec0ba2 100644
--- a/.github/workflows/hubble-ci.yml
+++ b/.github/workflows/hubble-ci.yml
@@ -128,7 +128,6 @@ jobs:
         env:
           COMMIT_ID: ${{ steps.server-ref.outputs.commit }}
           COMMIT_REF: ${{ steps.server-ref.outputs.commit }}
-          HUGEGRAPH_GIT_URL: ${{ env.HUGEGRAPH_SERVER_GIT_URL }}
           NODE_OPTIONS: --max-old-space-size=4096
         run: |
           echo "=== Environment Info ==="
@@ -150,16 +149,6 @@ jobs:
           cd ../../../
           pwd
           $TRAVIS_DIR/install-hugegraph.sh $COMMIT_ID $COMMIT_REF
-          API_VERSION="$(curl --fail --silent http://127.0.0.1:8080/versions |
-            python -c 'import json,sys; 
print(json.load(sys.stdin)["versions"]["api"])')"
-          python - "$API_VERSION" <<'PY'
-          import sys
-          parts = tuple(int(value) for value in sys.argv[1].split(".")[:2])
-          if parts < (0, 72):
-              raise SystemExit(
-                  f"Expected HugeGraph REST API >= 0.72, got {sys.argv[1]}"
-              )
-          PY
 
       - name: Release package audit
         env:
diff --git a/hugegraph-hubble/hubble-dist/assembly/travis/download-hugegraph.sh 
b/hugegraph-hubble/hubble-dist/assembly/travis/download-hugegraph.sh
index b1e93be0e..df4abd4e2 100755
--- a/hugegraph-hubble/hubble-dist/assembly/travis/download-hugegraph.sh
+++ b/hugegraph-hubble/hubble-dist/assembly/travis/download-hugegraph.sh
@@ -25,7 +25,7 @@ fi
 
 COMMIT_ID=$1
 COMMIT_REF=${2:-}
-HUGEGRAPH_GIT_URL=${HUGEGRAPH_GIT_URL:-"https://github.com/apache/hugegraph.git"}
+HUGEGRAPH_GIT_URL="https://github.com/apache/hugegraph.git";
 GIT_DIR=hugegraph
 CACHE_DIR="${HOME}/hugegraph-cache-${COMMIT_ID}"
 

Reply via email to