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