Files
shadow/share/ansible/playbook.yml
T
Iker Pedrosa d8fb10f7b7 share/ansible: implement distribution selection
Distribution to run can be selected when running `ansible-playbook` by
appending `-e 'distribution=fedora'` to the command.

Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
2024-07-18 10:17:29 -05:00

18 lines
357 B
YAML

- name: Start build container
hosts: localhost
vars:
image:
fedora: registry.fedoraproject.org/fedora:latest
alpine: docker.io/library/alpine:latest
debian: docker.io/library/debian:latest
roles:
- role: build_container
- name: CI run
hosts: builder
connection: podman
gather_facts: false
roles:
- role: ci_run