config/roles/dev/tasks/build.yml

11 lines
225 B
YAML
Raw Normal View History

2025-08-17 12:19:28 +03:00
- name: Installing common dependencies packages
become: true
2025-08-03 12:33:33 +03:00
ansible.builtin.dnf5:
name:
- openssl
2025-08-17 12:28:42 +03:00
# - perl # NOTE: install does not work (?)
2025-08-03 12:33:33 +03:00
- ninja-build
- git
2025-08-09 20:19:59 +03:00
- make
2025-08-03 12:33:33 +03:00
state: latest