26 lines
723 B
YAML
26 lines
723 B
YAML
---
|
|
- name: Include systemd availability check
|
|
ansible.builtin.include_tasks: systemd_check.yml
|
|
|
|
- name: Include user setup
|
|
ansible.builtin.include_tasks: user_setup.yml
|
|
|
|
- name: Include rootless Docker setup
|
|
ansible.builtin.include_tasks: rootless_docker.yml
|
|
|
|
- name: Include runner install
|
|
ansible.builtin.include_tasks: install_runner.yml
|
|
|
|
- name: Include prune setup
|
|
ansible.builtin.include_tasks: prune.yml
|
|
|
|
- name: Include healthcheck setup
|
|
ansible.builtin.include_tasks: healthcheck.yml
|
|
|
|
- name: Include pre-pull images
|
|
ansible.builtin.include_tasks: pre_pull_images.yml
|
|
|
|
- name: Include integration test
|
|
ansible.builtin.include_tasks: integration_test.yml
|
|
when: not gitea_runner_skip_registration
|