Dodana golang, maven
This commit is contained in:
parent
bea8094d7c
commit
42940142b7
|
@ -1,4 +1,5 @@
|
||||||
# Porazdeljeni sistemi
|
# Porazdeljeni sistemi
|
||||||
# Davor.Sluga@fri.uni-lj.si
|
# Davor.Sluga@fri.uni-lj.si
|
||||||
# Windows, VS Code
|
# Windows, VS Code, golang
|
||||||
- include_tasks: vscode.yml
|
- 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