diff --git a/infrastructure/helpers/build-mull.yaml b/infrastructure/helpers/build-mull.yaml index fd2b57c0..5ab11aaa 100644 --- a/infrastructure/helpers/build-mull.yaml +++ b/infrastructure/helpers/build-mull.yaml @@ -1,4 +1,9 @@ --- +- name: Install Python dependencies + pip: + requirements: "{{ source_dir }}/requirements.txt" + executable: pip3 + - name: Clone Mull's sources git: repo: "{{ repo_url }}" diff --git a/infrastructure/macos-playbook.yaml b/infrastructure/macos-playbook.yaml index 2cc21566..c665b5e8 100644 --- a/infrastructure/macos-playbook.yaml +++ b/infrastructure/macos-playbook.yaml @@ -36,11 +36,6 @@ name: "{{ llvm_packages }}" state: present - - name: Install Python dependencies - pip: - requirements: ../requirements.txt - executable: pip3 - - name: Build Mull include_tasks: helpers/build-mull.yaml diff --git a/infrastructure/ubuntu-playbook.yaml b/infrastructure/ubuntu-playbook.yaml index f8a65c2c..a263c6eb 100644 --- a/infrastructure/ubuntu-playbook.yaml +++ b/infrastructure/ubuntu-playbook.yaml @@ -44,11 +44,6 @@ state: present become: true - - name: Install Python dependencies - pip: - requirements: ../requirements.txt - executable: pip3 - - name: Build Mull include_tasks: helpers/build-mull.yaml