- name: Clone crun github repository git: repo: "{{ podman_crun_repopath }}" dest: "{{ podman_crun_buildpath }}" clone: yes update: yes version: "{{ podman_crun_version }}" - name: Execute autogen.sh shell: cmd: "./autogen.sh" chdir: "{{ podman_crun_buildpath }}" - name: Execute autogen.sh shell: cmd: "./configure" chdir: "{{ podman_crun_buildpath }}" - name: Build 'all' target with extra arguments make: chdir: "{{ podman_crun_buildpath }}" target: "all" - name: Build 'install' target with extra arguments make: chdir: "{{ podman_crun_buildpath }}" target: "install"