From 9f394f6e18b630f5296f6e4ecc99d1d910f222f5 Mon Sep 17 00:00:00 2001 From: Chelsea Mafrica Date: Wed, 20 Dec 2023 16:39:53 -0800 Subject: [PATCH] tests: Use function from Kata repo Switch to use function from Kata repo in common.bash to reduce dependency on the tests repo. Fixes #8713 Signed-off-by: Chelsea Mafrica --- ci/lib.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/lib.sh b/ci/lib.sh index 6180d62bae..d4e1b050b3 100644 --- a/ci/lib.sh +++ b/ci/lib.sh @@ -57,11 +57,10 @@ run_docs_url_alive_check() run_get_pr_changed_file_details() { - clone_tests_repo # Make sure we have the targeting branch git remote set-branches --add origin "${branch}" git fetch -a - source "$tests_repo_dir/.ci/lib.sh" + source "$kata_repo_dir/tests/common.bash" get_pr_changed_file_details }