Update Bluej, Greenfoot. Arduino2 Appimage, Slicer Appimage

This commit is contained in:
Frank Schiebel 2024-12-17 10:39:12 +01:00
parent 05a62f8582
commit 58fd458616
11 changed files with 281 additions and 9 deletions

View file

@ -37,7 +37,6 @@
when: not bjtf.stat.exists
#### Freecad
- name: Check if freecad target-file exists
delegate_to: localhost
stat:
@ -49,6 +48,49 @@
command: wget {{ freecadFullURI }} -O {{ freecadTargetFile }}
when: not fctf.stat.exists
#### Arduino
- name: Check if arduino2 target-file exists
delegate_to: localhost
stat:
path: "{{ arduinoTargetFile }}"
register: artf
- name: Download Arduino AppImage
delegate_to: localhost
command: wget {{ arduinoFullURI }} -O {{ arduinoTargetFile }}
when: not artf.stat.exists
#### Prusa Slicer
- name: Check if PrusaSlicer target-file exists
delegate_to: localhost
stat:
path: "{{ prusaTargetFile }}"
register: prtf
- name: Create unzip dir for prusaslicer
ansible.builtin.file:
path: /tmp/prusaslicer.tmp
state: directory
- name: Download and unpack PrusaSlicer Zip-Archive
delegate_to: localhost
unarchive:
src: "{{ prusaFullURI }}"
dest: /tmp/prusaslicer.tmp
remote_src: yes
when: not prtf.stat.exists
- name: Copy Prusyslicer Appimage to cache
copy:
src: "{{ item }}"
dest: "{{ prusaTargetFile }}"
with_fileglob:
- "/tmp/prusaslicer.tmp/*newer-distros*"
##command: wget {{ prusaFullURI }} -O /tmp/prusaslicer.zip
###{{ freecadTargetFile }}
#### Logseq
- name: Check if logseq target-file exists