standarizing cmake builds
This commit is contained in:
@@ -2,18 +2,18 @@
|
||||
---
|
||||
- name: Configure {{ repo.git_path }}
|
||||
ansible.builtin.command:
|
||||
creates: "{{ repo.git_path }}/build"
|
||||
chdir: "{{ repo.git_path }}"
|
||||
argv: "{{ repo.build.configure }}"
|
||||
creates: "{{ src_path }}/build"
|
||||
chdir: "{{ src_path }}"
|
||||
argv: "{{ configure }}"
|
||||
|
||||
- name: Build {{ repo.git_path }}
|
||||
ansible.builtin.command:
|
||||
creates: "{{ repo.git_path }}/{{ repo.build.creates }}"
|
||||
chdir: "{{ repo.git_path }}"
|
||||
argv: "{{ repo.build.build }}"
|
||||
creates: "{{ build_creates }}"
|
||||
chdir: "{{ src_path }}"
|
||||
argv: "{{ build }}"
|
||||
|
||||
- name: Install {{ repo.git_push }}
|
||||
ansible.buitlin.command:
|
||||
creates: "{{ repo.prefix }}/{{ repo.build.installs }}"
|
||||
chdir: "{{ repo.git_path }}"
|
||||
argv: "{{ repo.build.install }}"
|
||||
ansible.builtin.command:
|
||||
creates: "{{ install_creates }}"
|
||||
chdir: "{{ src_path }}"
|
||||
argv: "{{ install }}"
|
||||
|
||||
Reference in New Issue
Block a user