role-podman/tasks/install_crun.yml
2023-09-08 22:41:09 +02:00

28 lines
638 B
YAML

- 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"