winroom: remove ocaml

Not needed.
This commit is contained in:
Timotej Lazar 2022-10-05 13:18:27 +00:00
parent a4ebbd949c
commit 33361c1d51
2 changed files with 1 additions and 34 deletions

View file

@ -1,10 +1,8 @@
# Principi programskih jezikov
# Klemen.Klanjscek@fri.uni-lj.si
# Windows, GNU/Linux, VS Code, Ocaml, Eclipse, Haskell, SWI-Prolog, rlwrap
# Windows, GNU/Linux, VS Code, Eclipse, Haskell, SWI-Prolog, rlwrap
- include_tasks: vscode.yml
- include_tasks: ocaml.yml
- include_tasks: Eclipse.yml
- include_tasks: haskell.yml
- include_tasks: swi-prolog.yml

View file

@ -1,31 +0,0 @@
# TODO ugh
#- name: Install OCaml
# win_chocolatey:
# name: ocaml
#- name: Set Ocaml installer version
# set_fact:
# target_version: "1.0.1"
#
#- name: Check Ocaml install status
# win_stat:
# path: C:\Program Files (x86)\Thonny\thonny.exeasd
# register: file
#
#- when: not file.stat.exists
# block:
# # win_package fails to download for some reason
# - name: Download Ocaml
# win_get_url:
# url: https://github.com/diskuv/dkml-installer-ocaml/releases/download/v{{ target_version }}/setup-diskuv-ocaml-windows_x86_64-{{ target_version }}.exe
# dest: 'C:\'
# register: download
#
# - name: Install Ocaml
# win_package:
# path: "{{ download.dest }}"
# #arguments: /Verysilent /AllUsers
#
# - name: Remove temporary files
# win_file:
# path: "{{ download.dest }}"
# state: absent