separate install and dev roles, box basic playbook

This commit is contained in:
ProgramSnail 2025-08-08 21:41:02 +03:00
parent 58966f9e4a
commit f7a6f59fc6
9 changed files with 44 additions and 14 deletions

20
roles/dev/tasks/cpp.yml Normal file
View file

@ -0,0 +1,20 @@
- ansible.builtin.import_tasks: build.yml
- name: Install tools for cpp dev
ansible.builtin.dnf5:
name:
- make
- cmake
- xmake
- clang
- clang-tools
- clang-tools-extra
- clang-devel
- clang-tools-devel
- clang-tools-extra-devel
- clang-libs
- doxygen
state: latest