This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-machine-setup/roles/dev-machine/tasks/main.yaml
2020-09-14 10:04:56 +02:00

20 lines
354 B
YAML

---
- name: install os packages
package:
name:
- cmake
- llvm
- clang
- python3-pip
state: latest
- name: install python packages
become_user: "{{ account.name }}"
pip:
name:
- conan
- python-language-server
state: latest
extra_args: --user
executable: pip3