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

21 lines
519 B
YAML

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