moved source package builds to the bottom

This commit is contained in:
Matthew Stobbs
2025-03-11 20:19:08 -06:00
parent 2fd82b09d5
commit a7bb81db9c

View File

@@ -78,15 +78,6 @@
ansible.builtin.include_tasks: ansible.builtin.include_tasks:
file: "archive/{{ pkg }}.yml" file: "archive/{{ pkg }}.yml"
- name: Build and install source packages
when:
- pkg_src|length > 0
loop: "{{ pkg_src | unique }}"
loop_control:
loop_var: pkg
ansible.builtin.include_tasks:
file: "src/{{ pkg }}.yml"
- name: Install cargo packages - name: Install cargo packages
when: when:
- pkg_cargo|length > 0 - pkg_cargo|length > 0
@@ -121,6 +112,15 @@
ansible.builtin.include_tasks: ansible.builtin.include_tasks:
file: pipx.yml file: pipx.yml
- name: Build and install source packages
when:
- pkg_src|length > 0
loop: "{{ pkg_src | unique }}"
loop_control:
loop_var: pkg
ansible.builtin.include_tasks:
file: "src/{{ pkg }}.yml"
- name: Cleanup {{ d_tempdir.path }} - name: Cleanup {{ d_tempdir.path }}
ansible.builtin.file: ansible.builtin.file:
state: absent state: absent