16 lines
255 B
YAML
16 lines
255 B
YAML
|
- name: install jmespath for json_query
|
||
|
become: yes
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
pkg:
|
||
|
- python3-jmespath
|
||
|
|
||
|
- name: install packages for builds
|
||
|
become: yes
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
pkg:
|
||
|
- git
|
||
|
- make
|
||
|
- build-essential
|