From 86ebd55a3cd48a8af1a284acfdedbcb28c83bcf9 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 13 Mar 2023 15:29:09 -0700 Subject: [stable-2.14] ansible-test - Update git diff handling (#80202) This change allows ansible-test to work with newer versions of git on AZP.. (cherry picked from commit bad8843124a50493141a3e3d7920353239021389) Co-authored-by: Matt Clay --- .azure-pipelines/commands/sanity.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to '.azure-pipelines/commands/sanity.sh') diff --git a/.azure-pipelines/commands/sanity.sh b/.azure-pipelines/commands/sanity.sh index 6dc4d1da9a..75aea309ff 100755 --- a/.azure-pipelines/commands/sanity.sh +++ b/.azure-pipelines/commands/sanity.sh @@ -7,12 +7,6 @@ IFS='/:' read -ra args <<< "$1" group="${args[1]}" -if [ "${BASE_BRANCH:-}" ]; then - base_branch="origin/${BASE_BRANCH}" -else - base_branch="" -fi - case "${group}" in 1) options=(--skip-test pylint --skip-test ansible-doc --skip-test docs-build --skip-test package-data --skip-test changelog --skip-test validate-modules) ;; 2) options=( --test ansible-doc --test docs-build --test package-data --test changelog) ;; @@ -23,5 +17,5 @@ esac # shellcheck disable=SC2086 ansible-test sanity --color -v --junit ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \ - --docker --keep-git --base-branch "${base_branch}" \ + --docker \ "${options[@]}" --allow-disabled -- cgit v1.2.1