- hosts: localhost | |
name: Create job header and inventory | |
roles: | |
- role: emit-job-header | |
zuul_log_path_shard_build: true | |
- log-inventory | |
- hosts: all | |
roles: | |
- add-build-sshkey | |
- prepare-workspace | |
- ensure-output-dirs | |
tasks: | |
- name: Configure mirrors | |
ansible.builtin.include_role: | |
name: configure-mirrors | |
when: | |
- ansible_os_family == 'Debian' | |
vars: | |
set_apt_mirrors_trusted: True | |
mirror_use_ssl: True |