Added dev-machine packages
This commit is contained in:
parent
bc98f18417
commit
9777b74f64
2 changed files with 19 additions and 0 deletions
|
@ -13,3 +13,4 @@
|
||||||
- zsh
|
- zsh
|
||||||
- neovim
|
- neovim
|
||||||
- tools
|
- tools
|
||||||
|
- dev-machine
|
||||||
|
|
18
roles/dev-machine/tasks/main.yaml
Normal file
18
roles/dev-machine/tasks/main.yaml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
- name: install os packages
|
||||||
|
package:
|
||||||
|
name:
|
||||||
|
- cmake
|
||||||
|
- llvm
|
||||||
|
- clang
|
||||||
|
- python-pip
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: install python packages
|
||||||
|
become_user: "{{ account.name }}"
|
||||||
|
pip:
|
||||||
|
name:
|
||||||
|
- conan
|
||||||
|
- python-language-server
|
||||||
|
state: latest
|
||||||
|
extra_args: --user
|
Loading…
Reference in a new issue