classroom/roles/winroom/tasks/msys2.yml

38 lines
872 B
YAML

- name: Check msys2 install status
win_stat:
path: C:\msys64
register: file
- when: not file.stat.exists
block:
- name: Download msys2
win_get_url:
url: "https://github.com/msys2/msys2-installer/releases/download/2022-09-04/msys2-x86_64-20220904.exe"
dest: 'C:\'
register: download
- name: Install msys2
win_package:
path: "{{ download.dest }}"
arguments: install --confirm-command --accept-messages --root C:\msys64
- name: Add msys2 to path
win_path:
elements:
C:\msys64\usr\bin
- name: Update msys2
win_command: pacman -Syu --noconfirm
- name: Remove temporary files
win_file:
path: "{{ download.dest }}"
state: absent
- name: Install essentials
win_command: pacman -S --noconfirm {{ item }}
loop:
- gcc
- rlwrap
- rsync