summaryrefslogtreecommitdiff
path: root/.azure-pipelines/commands/sanity.sh
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2023-03-13 15:29:09 -0700
committerMatt Clay <matt@mystile.com>2023-03-15 13:08:14 -0700
commit86ebd55a3cd48a8af1a284acfdedbcb28c83bcf9 (patch)
treef9b6cb817ef21d3b4fbbc36c51d226d78e80505d /.azure-pipelines/commands/sanity.sh
parent4461de15deed01cf05486027ac1cf250c51e3dd5 (diff)
downloadansible-86ebd55a3cd48a8af1a284acfdedbcb28c83bcf9.tar.gz
[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 <matt@mystile.com>
Diffstat (limited to '.azure-pipelines/commands/sanity.sh')
-rwxr-xr-x.azure-pipelines/commands/sanity.sh8
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