Files
ansible_role_package/tasks/helpers/cmake_build.yml
Matthew Stobbs f689d536a0 fixed broken aquamarine build
Signed-off-by: Matthew Stobbs <matthew.stobbs@ucalgary.ca>
2025-05-12 19:46:09 -06:00

20 lines
506 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 }}"