summaryrefslogtreecommitdiff
path: root/roles/dev/tasks/main.yml
blob: 4f4231eec9f88be0bb51b128f1e37240b021dd4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- name: Install dev packages
  ansible.builtin.package:
    name:
      - gcc
      - clang
      - python
      - perf
      - autoconf
      - make
      - cmake
      - ninja
      - ctags
      - jq
      - tree
      # Linux man pages.
      - man-pages
    state: present