20 lines
500 B
YAML
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 }}"
|