feat(dev-playbook): install more build tools
This commit is contained in:
parent
863e7288e8
commit
132828a44b
1 changed files with 6 additions and 1 deletions
|
@ -8,11 +8,16 @@
|
||||||
- alacritty
|
- alacritty
|
||||||
- git
|
- git
|
||||||
- tmux
|
- tmux
|
||||||
- name: Install build tools - make
|
- name: Install build tools - make, cmake, gcc, g++, clang, libc6-dev
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
pkg:
|
pkg:
|
||||||
- make
|
- make
|
||||||
|
- cmake
|
||||||
|
- gcc
|
||||||
|
- g++
|
||||||
|
- clang
|
||||||
|
- libc6-dev
|
||||||
- name: Enable debian bookworm backports
|
- name: Enable debian bookworm backports
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.apt_repository:
|
ansible.builtin.apt_repository:
|
||||||
|
|
Loading…
Reference in a new issue