2018-11-06 13:47:09 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import ci_lib
|
|
|
|
|
|
|
|
# Naturally DebOps only supports Debian.
|
|
|
|
ci_lib.DISTROS = ['debian']
|
|
|
|
|
|
|
|
ci_lib.run_batches([
|
|
|
|
[
|
2021-11-10 01:05:37 +00:00
|
|
|
'pip install -qqq "debops[ansible]==2.1.2"',
|
2018-11-06 13:47:09 +00:00
|
|
|
],
|
|
|
|
[
|
2021-09-08 01:18:27 +00:00
|
|
|
'aws ecr-public get-login-password | docker login --username AWS --password-stdin public.ecr.aws',
|
2018-11-06 13:47:09 +00:00
|
|
|
],
|
|
|
|
])
|
2020-10-25 20:48:54 +00:00
|
|
|
|
|
|
|
ci_lib.run('ansible-galaxy collection install debops.debops:==2.1.2')
|