2024-05-27 11:55:49 +05:00
|
|
|
- name: Clone asdf
|
|
|
|
ansible.builtin.git:
|
|
|
|
repo: https://github.com/asdf-vm/asdf.git
|
|
|
|
dest: "{{ ansible_env.HOME }}/src/asdf"
|
|
|
|
version: v0.14.0
|
|
|
|
- name: Install plugin dependencies
|
|
|
|
become: true
|
|
|
|
ansible.builtin.apt:
|
|
|
|
pkg:
|
|
|
|
- build-essential
|
|
|
|
- autoconf
|
|
|
|
- m4
|
|
|
|
- unzip
|
|
|
|
- name: Install erlang and elixir
|
|
|
|
ansible.builtin.script:
|
|
|
|
cmd: files/elixir.sh
|
2024-06-22 12:59:45 +05:00
|
|
|
- name: Install inotify-tools (used by phoenix framework)
|
|
|
|
become: true
|
|
|
|
ansible.builtin.apt:
|
|
|
|
name: inotify-tools
|