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