Merge branch 'master' of gitlab.fri.uni-lj.si:timotej/classroom

This commit is contained in:
polz 2023-09-07 22:29:14 +02:00
commit a4d991b553
4 changed files with 23 additions and 1 deletions

View file

@ -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

View 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

View file

@ -0,0 +1,5 @@
- name: Install the GO programming language
apt:
name: golang
state: latest

View file

@ -0,0 +1,4 @@
- name: Install maven
apt:
name: maven
state: latest