19 lines
533 B
YAML
19 lines
533 B
YAML
---
|
|
- name: Include systemd availability check
|
|
ansible.builtin.include_tasks: systemd_check.yml
|
|
|
|
- name: Install runner (Docker mode)
|
|
ansible.builtin.include_tasks: docker_mode.yml
|
|
when: runner_mode == 'docker'
|
|
|
|
- name: Install runner (Binary mode)
|
|
ansible.builtin.include_tasks: binary_mode.yml
|
|
when: runner_mode == 'binary'
|
|
|
|
- name: Include prune setup
|
|
ansible.builtin.include_tasks: prune.yml
|
|
|
|
- name: Include integration test
|
|
ansible.builtin.include_tasks: integration_test.yml
|
|
when: not skip_runner_registration
|