2023-09-08 20:41:09 +00:00
|
|
|
- name: Clone Conmon github repository
|
|
|
|
git:
|
|
|
|
repo: "{{ podman_conmon_repopath }}"
|
|
|
|
dest: "{{ podman_conmon_buildpath }}"
|
|
|
|
clone: yes
|
|
|
|
update: yes
|
|
|
|
version: "{{ podman_conmon_version }}"
|
2023-09-11 20:23:53 +00:00
|
|
|
force: true
|
2023-09-08 20:41:09 +00:00
|
|
|
|
|
|
|
- name: Build 'all' target with extra arguments
|
|
|
|
make:
|
|
|
|
chdir: "{{ podman_conmon_buildpath }}"
|
|
|
|
target: "all"
|
|
|
|
|
|
|
|
- name: Build 'podman' target with extra arguments
|
|
|
|
make:
|
|
|
|
chdir: "{{ podman_conmon_buildpath }}"
|
|
|
|
target: "podman"
|
|
|
|
|