20 lines
462 B
YAML
20 lines
462 B
YAML
- name: Clone Conmon github repository
|
|
git:
|
|
repo: "{{ podman_conmon_repopath }}"
|
|
dest: "{{ podman_conmon_buildpath }}"
|
|
clone: yes
|
|
update: yes
|
|
version: "{{ podman_conmon_version }}"
|
|
force: true
|
|
|
|
- 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"
|
|
|