Prepare for stable-2.10 branching of ansible-base (#71)

* Prepare for 2.11.

* Fix script.

* Add some Ansible 2.10 runs.
This commit is contained in:
Felix Fontein
2020-06-17 23:00:30 +02:00
committed by GitHub
parent cc45650e82
commit 8651a6af6c
2 changed files with 12 additions and 5 deletions

View File

@@ -55,12 +55,11 @@ pip --version
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
elif [ "${ansible_version}" == "2.9" ]; then
# Needed until all relevant backports have been merged
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 -- should no longer necessary with the backports
else
retry pip install "https://github.com/ansible/ansible/archive/stable-${ansible_version}.tar.gz" --disable-pip-version-check
fi
# START: HACK