ansible-desktop/roles/dev-java/tasks/arch.yml

25 lines
542 B
YAML
Raw Normal View History

2024-05-08 00:22:00 +00:00
- name: "[Arch] install java"
become: yes
community.general.pacman:
name:
- jdk17-openjdk
2024-05-10 19:11:40 +00:00
- name: "[Arch] Build pkgs IntelliJ"
shell:
cmd:
2024-05-10 19:11:40 +00:00
yay -Sw --needed intellij-idea-ultimate-edition
- name: "[Arch] Install IntelliJ"
2024-05-10 19:17:43 +00:00
become: yes
2024-05-10 19:11:40 +00:00
shell:
chdir: "{{ ansible_user_dir }}/.cache/yay/intellij-idea-ultimate-edition"
cmd:
2024-05-10 19:17:43 +00:00
makepkg -i --noconfirm
2024-05-08 00:22:00 +00:00
- name: "[Arch] Create symbolic link"
become: yes
file:
src: "/usr/bin/intellij-idea-ultimate-edition"
dest: "/usr/bin/idea"
state: link