PPJ cleanup
This commit is contained in:
parent
dafd821af9
commit
ba865a9034
9 changed files with 49 additions and 64 deletions
|
@ -1,25 +1,25 @@
|
||||||
- name: Check Haskell install status
|
# - name: Check Haskell install status
|
||||||
win_stat:
|
# win_stat:
|
||||||
path: C:\ghcup\bin\ghc.exe
|
# path: C:\ghcup\bin\ghc.exe
|
||||||
register: file
|
# register: file
|
||||||
|
|
||||||
- when: not file.stat.exists
|
# - when: not file.stat.exists
|
||||||
block:
|
# block:
|
||||||
- name: Download Haskell
|
# - name: Download Haskell
|
||||||
win_get_url:
|
# win_get_url:
|
||||||
url: "https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1"
|
# url: "https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1"
|
||||||
dest: 'C:\'
|
# dest: 'C:\'
|
||||||
register: download
|
# register: download
|
||||||
|
|
||||||
- name: Install Haskell
|
# - name: Install Haskell
|
||||||
win_command: powershell.exe {{ download.dest }} -InBash -ExistingMsys2Dir C:\msys64
|
# win_command: powershell.exe {{ download.dest }} -InBash -ExistingMsys2Dir C:\msys64
|
||||||
|
|
||||||
- name: Add Haskell to PATH
|
# - name: Add Haskell to PATH
|
||||||
win_path:
|
# win_path:
|
||||||
elements:
|
# elements:
|
||||||
C:\ghcup\bin
|
# C:\ghcup\bin
|
||||||
|
|
||||||
- name: Remove temporary files
|
# - name: Remove temporary files
|
||||||
win_file:
|
# win_file:
|
||||||
path: "{{ download.dest }}"
|
# path: "{{ download.dest }}"
|
||||||
state: absent
|
# state: absent
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
- include_tasks: vscode.yml
|
- include_tasks: vscode.yml
|
||||||
- include_tasks: ocaml.yml
|
- include_tasks: ocaml.yml
|
||||||
- include_tasks: eclipse.yml
|
- include_tasks: eclipse.yml
|
||||||
- include_tasks: haskell.yml
|
|
||||||
- include_tasks: swi-prolog.yml
|
- include_tasks: swi-prolog.yml
|
||||||
- include_tasks: rlwrap.yml
|
- include_tasks: rlwrap.yml
|
||||||
|
- include_tasks: utop.yml
|
||||||
|
|
||||||
|
|
0
roles/linroom/tasks/htop.yml
Normal file
0
roles/linroom/tasks/htop.yml
Normal file
4
roles/linroom/tasks/utop.yml
Normal file
4
roles/linroom/tasks/utop.yml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
- name: Install utop
|
||||||
|
apt:
|
||||||
|
name: utop
|
||||||
|
state: latest
|
|
@ -1,9 +1,7 @@
|
||||||
VSCode_Extensions:
|
VSCode_Extensions:
|
||||||
- VisualStudioExptTeam.vscodeintellicode
|
- VisualStudioExptTeam.vscodeintellicode
|
||||||
- arthurwang.vsc-prolog
|
- AmauryRabouan.new-vsc-prolog
|
||||||
- dramforever.vscode-ghc-simple
|
|
||||||
- eamodio.gitlens
|
- eamodio.gitlens
|
||||||
- justusadam.language-haskell
|
|
||||||
- ms-dotnettools.csdevkit # IS-63714
|
- ms-dotnettools.csdevkit # IS-63714
|
||||||
- ms-python.python
|
- ms-python.python
|
||||||
- ms-vscode.cpptools
|
- ms-vscode.cpptools
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
VSCode_Extensions:
|
VSCode_Extensions:
|
||||||
- VisualStudioExptTeam.vscodeintellicode
|
- VisualStudioExptTeam.vscodeintellicode
|
||||||
- arthurwang.vsc-prolog
|
- AmauryRabouan.new-vsc-prolog
|
||||||
- dramforever.vscode-ghc-simple
|
|
||||||
- eamodio.gitlens
|
- eamodio.gitlens
|
||||||
- justusadam.language-haskell
|
|
||||||
- ms-dotnettools.csdevkit # IS-63714
|
- ms-dotnettools.csdevkit # IS-63714
|
||||||
- ms-python.python
|
- ms-python.python
|
||||||
- ms-vscode.cpptools
|
- ms-vscode.cpptools
|
||||||
|
|
|
@ -1,11 +0,0 @@
|
||||||
# Principi programskih jezikov
|
|
||||||
# Klemen.Klanjscek@fri.uni-lj.si
|
|
||||||
# Windows, GNU/Linux, VS Code, Ocaml, 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
|
|
||||||
- include_tasks: rlwrap.yml
|
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
- name: Check Haskell install status
|
# - name: Check Haskell install status
|
||||||
win_stat:
|
# win_stat:
|
||||||
path: C:\ghcup\bin\ghc.exe
|
# path: C:\ghcup\bin\ghc.exe
|
||||||
register: file
|
# register: file
|
||||||
|
|
||||||
- when: not file.stat.exists
|
# - when: not file.stat.exists
|
||||||
block:
|
# block:
|
||||||
- name: Download Haskell
|
# - name: Download Haskell
|
||||||
win_get_url:
|
# win_get_url:
|
||||||
url: "https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1"
|
# url: "https://www.haskell.org/ghcup/sh/bootstrap-haskell.ps1"
|
||||||
dest: 'C:\'
|
# dest: 'C:\'
|
||||||
register: download
|
# register: download
|
||||||
|
|
||||||
- name: Install Haskell
|
# - name: Install Haskell
|
||||||
win_command: powershell.exe {{ download.dest }} -InBash -ExistingMsys2Dir C:\msys64
|
# win_command: powershell.exe {{ download.dest }} -InBash -ExistingMsys2Dir C:\msys64
|
||||||
|
|
||||||
- name: Add Haskell to PATH
|
# - name: Add Haskell to PATH
|
||||||
win_path:
|
# win_path:
|
||||||
elements:
|
# elements:
|
||||||
C:\ghcup\bin
|
# C:\ghcup\bin
|
||||||
|
|
||||||
- name: Remove temporary files
|
# - name: Remove temporary files
|
||||||
win_file:
|
# win_file:
|
||||||
path: "{{ download.dest }}"
|
# path: "{{ download.dest }}"
|
||||||
state: absent
|
# state: absent
|
||||||
|
|
|
@ -1,13 +1,9 @@
|
||||||
VSCode_Extensions:
|
VSCode_Extensions:
|
||||||
- VisualStudioExptTeam.vscodeintellicode
|
- VisualStudioExptTeam.vscodeintellicode
|
||||||
- arthurwang.vsc-prolog
|
|
||||||
- dramforever.vscode-ghc-simple
|
|
||||||
- eamodio.gitlens
|
- eamodio.gitlens
|
||||||
- justusadam.language-haskell
|
|
||||||
- ms-dotnettools.csdevkit # IS-63714
|
- ms-dotnettools.csdevkit # IS-63714
|
||||||
- ms-python.python
|
- ms-python.python
|
||||||
- ms-vscode.cpptools
|
- ms-vscode.cpptools
|
||||||
- ocamllabs.ocaml-platform
|
|
||||||
- stonebuddha.vscode-better-sml
|
- stonebuddha.vscode-better-sml
|
||||||
- vscode-icons-team.vscode-icons
|
- vscode-icons-team.vscode-icons
|
||||||
- vscjava.vscode-java-pack
|
- vscjava.vscode-java-pack
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue