need to test the alacritty build to make sure it's ready

This commit is contained in:
Matthew Stobbs
2026-01-24 14:25:33 -07:00
parent 1a8f402c68
commit fe364e2b6d
3 changed files with 42 additions and 11 deletions

View File

@@ -1,8 +1,6 @@
# vim: set filetype=yaml.ansible :
---
- name: Cargo source install helper
when:
- cargo_install_type == 'source'
block:
- name: Set build variables
ansible.builtin.set_fact:
@@ -37,3 +35,30 @@
mode: "0755"
remote_src: true
src: "{{ git_path }}/{{ bin_output }}"
- name: Install additional files
when:
- install_files is defined
block:
- name: Create missing directories
loop: "{{ install_files | dict2items }}"
loop_control:
loop_var: file
ansible.builtin.file:
path: "{{ install_prefix }}/{{ file.value | dirname }}"
owner: root
group: root
mode: "0755"
state: directory
- name: Copy extra files
loop: "{{ install_files | dict2items }}"
loop_control:
loop_var: file
ansible.builtin.copy:
backup: false
dest: "{{ install_prefix }}/{{ file.value }}"
owner: root
group: root
mode: "0644"
remote_src: true
src: "{{ git_path }}/{{ file.key }}"