From a7bb81db9c2aeabd866f0b1d254a4918acf9dce8 Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Tue, 11 Mar 2025 20:19:08 -0600 Subject: [PATCH] moved source package builds to the bottom --- tasks/main.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index 49204ab..c7079be 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -78,15 +78,6 @@ ansible.builtin.include_tasks: 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 when: - pkg_cargo|length > 0 @@ -121,6 +112,15 @@ ansible.builtin.include_tasks: 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 }} ansible.builtin.file: state: absent