diff options
author | Matt Clay <matt@mystile.com> | 2023-03-13 15:29:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 15:29:09 -0700 |
commit | bad8843124a50493141a3e3d7920353239021389 (patch) | |
tree | 9b8221d5303aa492162a79d8e41e9f2554605dba /.azure-pipelines | |
parent | 1c156c0d16d2d6a814c66aeb6b313df660dd866d (diff) | |
download | ansible-bad8843124a50493141a3e3d7920353239021389.tar.gz |
ansible-test - Update git diff handling (#80202)
This change allows ansible-test to work with newer versions of git on AZP.
Diffstat (limited to '.azure-pipelines')
-rwxr-xr-x | .azure-pipelines/commands/sanity.sh | 8 |
1 files changed, 1 insertions, 7 deletions
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 |