[TEMP] Switch to Ansible 2.9 from ansible/ansible#69377 which should fix change detection for 2.9. (#45)

This commit is contained in:
Felix Fontein
2020-05-08 08:27:08 +02:00
committed by GitHub
parent 970d44a25c
commit 43b6765c00

View File

@@ -56,10 +56,11 @@ pip list --disable-pip-version-check
if [ "${ansible_version}" == "devel" ]; then
retry pip install https://github.com/ansible/ansible/archive/devel.tar.gz --disable-pip-version-check
else
retry pip install https://github.com/ansible/ansible/archive/stable-2.9.tar.gz --disable-pip-version-check
retry pip install https://github.com/felixfontein/ansible/archive/backport/2.9/ansible-test.tar.gz --disable-pip-version-check
# retry pip install https://github.com/ansible/ansible/archive/stable-2.9.tar.gz --disable-pip-version-check
# retry pip install ansible==${ansible_version} --disable-pip-version-check
# force complete CI run for Ansible 2.9: 2.9's ansible-test's change detection for collections is broken
COMPLETE=yes
# COMPLETE=yes -- should no longer necessary with the backports
fi
# START: HACK