role-podman/tasks/install_crun.yml

29 lines
654 B
YAML
Raw Normal View History

2023-09-08 20:41:09 +00:00
- name: Clone crun github repository
git:
repo: "{{ podman_crun_repopath }}"
dest: "{{ podman_crun_buildpath }}"
clone: yes
update: yes
version: "{{ podman_crun_version }}"
2023-09-11 20:23:53 +00:00
force: true
2023-09-08 20:41:09 +00:00
- 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"