From 157053bb6dc105694ede59ba28c951a73cd7f627 Mon Sep 17 00:00:00 2001 From: Anders Chen Date: Tue, 28 Jan 2025 14:55:42 +0700 Subject: [PATCH] Use fork of gh-ost-ci-env with mysql-8.4.3 --- script/cibuild-gh-ost-replica-tests | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/cibuild-gh-ost-replica-tests b/script/cibuild-gh-ost-replica-tests index 90eb856bc..5f345fa5d 100755 --- a/script/cibuild-gh-ost-replica-tests +++ b/script/cibuild-gh-ost-replica-tests @@ -7,7 +7,7 @@ whoami fetch_ci_env() { # Clone gh-ost-ci-env # Only clone if not already running locally at latest commit - remote_commit=$(git ls-remote https://github.com/github/gh-ost-ci-env.git HEAD | cut -f1) + remote_commit=$(git ls-remote https://github.com/chen-anders/gh-ost-ci-env.git HEAD | cut -f1) local_commit="unknown" [ -d "gh-ost-ci-env" ] && local_commit=$(cd gh-ost-ci-env && git log --format="%H" -n 1) @@ -16,7 +16,7 @@ fetch_ci_env() { if [ "$remote_commit" != "$local_commit" ] ; then rm -rf ./gh-ost-ci-env - git clone https://github.com/github/gh-ost-ci-env.git + git clone https://github.com/chen-anders/gh-ost-ci-env.git fi }