Create `build_container` and `ci_run` roles and move the fedora target to them. Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
14 lines
268 B
YAML
14 lines
268 B
YAML
- name: Start build container
|
|
hosts: localhost
|
|
roles:
|
|
- role: build_container
|
|
vars:
|
|
container_image: registry.fedoraproject.org/fedora:latest
|
|
|
|
- name: CI run
|
|
hosts: builder
|
|
connection: podman
|
|
gather_facts: false
|
|
roles:
|
|
- role: ci_run
|