fixed broken aquamarine build

Signed-off-by: Matthew Stobbs <matthew.stobbs@ucalgary.ca>
This commit is contained in:
Matthew Stobbs
2025-05-12 19:56:55 -06:00
parent f689d536a0
commit 34b60d3bea
2 changed files with 5 additions and 3 deletions

View File

@@ -1,18 +1,19 @@
# vim: set filetype=yaml.ansible :
---
- name: "Configure {{ repo.git_path }}"
- name: "Configure {{ src_path }}"
ansible.builtin.command:
creates: "{{ src_path }}/build"
chdir: "{{ src_path }}"
argv: "{{ configure }}"
- name: "Build {{ repo.git_path }}"
- name: "Build {{ src_path }}"
ansible.builtin.command:
creates: "{{ build_creates }}"
chdir: "{{ src_path }}"
argv: "{{ build }}"
- name: "Install {{ repo.git_push }}"
- name: "Install {{ src_path }}"
become: "{{ do_become }}"
ansible.builtin.command:
creates: "{{ install_creates }}"
chdir: "{{ src_path }}"