diff --git a/roles/check-compose/tasks/main.yml b/roles/check-compose/tasks/main.yml index 203ba09768..bdb0453dbc 100644 --- a/roles/check-compose/tasks/main.yml +++ b/roles/check-compose/tasks/main.yml @@ -52,8 +52,14 @@ dest: /root/fedora-qa register: gitqa +- name: Build check-compose + command: "make prefix=/usr" + args: + chdir: /root/fedora-qa/check-compose + when: "gitqa|changed" + - name: Install check-compose - command: "make install" + command: "make prefix=/usr install" args: chdir: /root/fedora-qa/check-compose when: "gitqa|changed"