add more for Alpine

This commit is contained in:
Matthew Stobbs
2025-03-10 21:05:47 -06:00
parent 51d97dd18f
commit 2e885b31ac
18 changed files with 89 additions and 33 deletions

View File

@@ -8,15 +8,20 @@
ansible.builtin.include_tasks:
file: config/neovide.yml
- name: Append neovide to pkg_sys and pkg_cargo
- name: Linux based neovide install
when:
- ansible_system == 'Linux'
notify:
- Depend cargo
changed_when: true
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + neovide.deps }}"
pkg_cargo: "{{ pkg_cargo + [neovide] }}"
block:
- name: Append neovide build_deps to pkg_sys
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + neovide.deps }}"
- name: Append neovide to pkg_cargo
notify:
- Depend cargo
changed_when: true
ansible.builtin.set_fact:
pkg_cargo: "{{ pkg_cargo + [neovide] }}"
- name: Append neovide to pkg_cask
when: