fixed broken aquamarine build
Signed-off-by: Matthew Stobbs <matthew.stobbs@ucalgary.ca>
This commit is contained in:
@@ -1,18 +1,19 @@
|
|||||||
# vim: set filetype=yaml.ansible :
|
# vim: set filetype=yaml.ansible :
|
||||||
---
|
---
|
||||||
- name: "Configure {{ repo.git_path }}"
|
- name: "Configure {{ src_path }}"
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
creates: "{{ src_path }}/build"
|
creates: "{{ src_path }}/build"
|
||||||
chdir: "{{ src_path }}"
|
chdir: "{{ src_path }}"
|
||||||
argv: "{{ configure }}"
|
argv: "{{ configure }}"
|
||||||
|
|
||||||
- name: "Build {{ repo.git_path }}"
|
- name: "Build {{ src_path }}"
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
creates: "{{ build_creates }}"
|
creates: "{{ build_creates }}"
|
||||||
chdir: "{{ src_path }}"
|
chdir: "{{ src_path }}"
|
||||||
argv: "{{ build }}"
|
argv: "{{ build }}"
|
||||||
|
|
||||||
- name: "Install {{ repo.git_push }}"
|
- name: "Install {{ src_path }}"
|
||||||
|
become: "{{ do_become }}"
|
||||||
ansible.builtin.command:
|
ansible.builtin.command:
|
||||||
creates: "{{ install_creates }}"
|
creates: "{{ install_creates }}"
|
||||||
chdir: "{{ src_path }}"
|
chdir: "{{ src_path }}"
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
|
|
||||||
- name: Do build and install {{ pkg }}
|
- name: Do build and install {{ pkg }}
|
||||||
vars:
|
vars:
|
||||||
|
do_become: true
|
||||||
src_path: "{{ srcconfig.aquamarine.src_path }}"
|
src_path: "{{ srcconfig.aquamarine.src_path }}"
|
||||||
configure: "{{ srcconfig.aquamarine.configure }}"
|
configure: "{{ srcconfig.aquamarine.configure }}"
|
||||||
build_creates: "{{ srcconfig.aquamarine.build_creates }}"
|
build_creates: "{{ srcconfig.aquamarine.build_creates }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user