Files
ansible_role_package/tasks/helpers/cmake_build.yml
2025-03-31 21:17:22 -06:00

20 lines
500 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Configure {{ repo.git_path }}
ansible.builtin.command:
creates: "{{ src_path }}/build"
chdir: "{{ src_path }}"
argv: "{{ configure }}"
- name: Build {{ repo.git_path }}
ansible.builtin.command:
creates: "{{ build_creates }}"
chdir: "{{ src_path }}"
argv: "{{ build }}"
- name: Install {{ repo.git_push }}
ansible.builtin.command:
creates: "{{ install_creates }}"
chdir: "{{ src_path }}"
argv: "{{ install }}"