2018-11-06 13:47:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import ci_lib
|
|
|
|
|
|
|
|
batches = [
|
|
|
|
[
|
|
|
|
# Must be installed separately, as PyNACL indirect requirement causes
|
|
|
|
# newer version to be installed if done in a single pip run.
|
2020-04-24 21:10:00 +00:00
|
|
|
# Separately install ansible based on version passed in from azure-pipelines.yml or .travis.yml
|
2019-01-19 06:44:49 +00:00
|
|
|
'pip install "pycparser<2.19" "idna<2.7"',
|
2018-11-06 13:47:09 +00:00
|
|
|
'pip install '
|
|
|
|
'-r tests/requirements.txt '
|
|
|
|
'-r tests/ansible/requirements.txt',
|
2020-09-04 04:50:19 +00:00
|
|
|
# 'pip install -q ansible=={0}'.format(ci_lib.ANSIBLE_VERSION)
|
|
|
|
# ansible v2.10 isn't out yet so we're installing from github for now
|
|
|
|
'pip install -q {}'.format(ci_lib.ANSIBLE_VERSION)
|
2018-11-06 13:47:09 +00:00
|
|
|
]
|
|
|
|
]
|
|
|
|
|
|
|
|
batches.extend(
|
2018-11-07 00:33:55 +00:00
|
|
|
['docker pull %s' % (ci_lib.image_for_distro(distro),)]
|
2018-11-06 13:47:09 +00:00
|
|
|
for distro in ci_lib.DISTROS
|
|
|
|
)
|
|
|
|
|
|
|
|
ci_lib.run_batches(batches)
|
2020-09-04 05:20:51 +00:00
|
|
|
|
|
|
|
# after ansible is installed, install common collections until ansible==2.10 comes out
|
|
|
|
ci_lib.run('ansible-galaxy collection install community.general')
|