Merge branch 'master' of gitlab.fri.uni-lj.si:timotej/classroom
This commit is contained in:
commit
a4d991b553
|
@ -1,4 +1,5 @@
|
|||
# Porazdeljeni sistemi
|
||||
# Davor.Sluga@fri.uni-lj.si
|
||||
# Windows, VS Code
|
||||
# Windows, VS Code, golang
|
||||
- include_tasks: vscode.yml
|
||||
- include_tasks: golang.yml
|
||||
|
|
12
roles/linroom/tasks/PyCharm.yml
Normal file
12
roles/linroom/tasks/PyCharm.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
- name: Install PyCharm
|
||||
block:
|
||||
- name: Create destination for JetBrains PyCharm
|
||||
file:
|
||||
path: /opt/PyCharm
|
||||
state: directory
|
||||
- name: Download and unpack JetBrains PyCharm
|
||||
unarchive:
|
||||
src: https://download.jetbrains.com/python/pycharm-community-2023.2.1.tar.gz
|
||||
dest: /opt/PyCharm
|
||||
creates: /opt/PyCharm/pycharm-community-2023.2.1/build.txt
|
||||
remote_src: yes
|
5
roles/linroom/tasks/golang.yml
Normal file
5
roles/linroom/tasks/golang.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
- name: Install the GO programming language
|
||||
apt:
|
||||
name: golang
|
||||
state: latest
|
||||
|
4
roles/linroom/tasks/maven.yml
Normal file
4
roles/linroom/tasks/maven.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Install maven
|
||||
apt:
|
||||
name: maven
|
||||
state: latest
|
Loading…
Reference in a new issue