Add checkout config repository to prusa-slicer

This commit is contained in:
Przemek Grondek 2022-07-14 21:20:37 +02:00
parent 2b7a8ae409
commit c990af46a9
4 changed files with 48 additions and 37 deletions

View File

@ -0,0 +1,6 @@
- name: checkout dwmstatus
git:
repo: "{{ prusa_slicer.repo }}"
dest: "{{ ansible_user_dir }}/.config/PrusaSlicer"
clone: yes
update: yes

View File

@ -0,0 +1,38 @@
- name: install jmespath for json_query
become: yes
apt:
update_cache: yes
pkg:
- python3-jmespath
- name: "Get PrusaSlicer version"
uri:
url: https://api.github.com/repos/prusa3d/PrusaSlicer/releases/latest
body_format: json
register: git_info
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
when: ansible_architecture == "x86_64"
- name: Install on amd64
become: yes
when: ansible_architecture == "x86_64"
get_url:
url: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
dest: /usr/local/bin/prusa-slicer
mode: 0755
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
when: ansible_architecture == "arm64"
- name: Install on arm64
when: ansible_architecture == "arm64"
become: yes
get_url:
url: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
dest: /usr/local/bin/prusa-slicer
mode: 0755

View File

@ -1,38 +1,3 @@
- name: install jmespath for json_query - include: install-program.yml
become: yes
apt:
update_cache: yes
pkg:
- python3-jmespath
- name: "Get PrusaSlicer version" - include: checkout-git.yml
uri:
url: https://api.github.com/repos/prusa3d/PrusaSlicer/releases/latest
body_format: json
register: git_info
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
when: ansible_architecture == "x86_64"
- name: Install on amd64
become: yes
when: ansible_architecture == "x86_64"
get_url:
url: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*x64-GTK3.*AppImage'))[0] }}"
dest: /usr/local/bin/prusa-slicer
mode: 0755
- name: "Download URL"
debug:
msg: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
when: ansible_architecture == "arm64"
- name: Install on arm64
when: ansible_architecture == "arm64"
become: yes
get_url:
url: "{{ (git_info.json | json_query('assets[*].browser_download_url') | select('match', '.*armv7l-GTK2.*AppImage'))[0] }}"
dest: /usr/local/bin/prusa-slicer
mode: 0755

View File

@ -0,0 +1,2 @@
prusa_slicer:
repo: git@github.com:pgrondek/prusa-slicer-profiles.git