You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.2 KiB
Python
83 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
import os
|
|
import shutil
|
|
import sys
|
|
|
|
import ci_lib
|
|
|
|
|
|
# DebOps only supports Debian.
|
|
ci_lib.DISTROS = ['debian'] * ci_lib.TARGET_COUNT
|
|
|
|
project_dir = os.path.join(ci_lib.TMP, 'project')
|
|
vars_path = 'ansible/inventory/group_vars/debops_all_hosts.yml'
|
|
inventory_path = 'ansible/inventory/hosts'
|
|
docker_hostname = ci_lib.get_docker_hostname()
|
|
|
|
|
|
with ci_lib.Fold('docker_setup'):
|
|
containers = ci_lib.make_containers(port_offset=500, name_prefix='debops-')
|
|
ci_lib.start_containers(containers)
|
|
|
|
|
|
with ci_lib.Fold('job_setup'):
|
|
ci_lib.run('debops-init %s', project_dir)
|
|
os.chdir(project_dir)
|
|
|
|
with open('.debops.cfg', 'w') as fp:
|
|
fp.write(
|
|
"[ansible defaults]\n"
|
|
"strategy_plugins = %s/ansible_mitogen/plugins/strategy\n"
|
|
"strategy = mitogen_linear\n"
|
|
% (ci_lib.GIT_ROOT,)
|
|
)
|
|
|
|
with open(vars_path, 'w') as fp:
|
|
fp.write(
|
|
"ansible_python_interpreter: /usr/bin/python2.7\n"
|
|
"\n"
|
|
"ansible_user: mitogen__has_sudo_pubkey\n"
|
|
"ansible_become_pass: has_sudo_pubkey_password\n"
|
|
"ansible_ssh_private_key_file: %s\n"
|
|
"\n"
|
|
# Speed up slow DH generation.
|
|
"dhparam__bits: ['128', '64']\n"
|
|
% (ci_lib.key_file,)
|
|
)
|
|
|
|
with open(inventory_path, 'a') as fp:
|
|
fp.writelines(
|
|
'%(name)s '
|
|
'ansible_host=%(hostname)s '
|
|
'ansible_port=%(port)d '
|
|
'ansible_python_interpreter=%(python_path)s '
|
|
'\n'
|
|
% container
|
|
for container in containers
|
|
)
|
|
|
|
print()
|
|
print(' echo --- ansible/inventory/hosts: ---')
|
|
ci_lib.run('cat ansible/inventory/hosts')
|
|
print('---')
|
|
print()
|
|
|
|
# Now we have real host key checking, we need to turn it off
|
|
os.environ['ANSIBLE_HOST_KEY_CHECKING'] = 'False'
|
|
|
|
|
|
interesting = ci_lib.get_interesting_procs()
|
|
|
|
with ci_lib.Fold('first_run'):
|
|
ci_lib.run('debops common %s', ' '.join(sys.argv[1:]))
|
|
|
|
ci_lib.check_stray_processes(interesting, containers)
|
|
|
|
|
|
with ci_lib.Fold('second_run'):
|
|
ci_lib.run('debops common %s', ' '.join(sys.argv[1:]))
|
|
|
|
ci_lib.check_stray_processes(interesting, containers)
|