Compare commits
No commits in common. "bf6ca66f4b1ae2a39268340f8fa87d2b7b8fb831" and "7ee7eebfc78f28b03e738bfef70b7fbc4928a5c1" have entirely different histories.
bf6ca66f4b
...
7ee7eebfc7
@ -5,11 +5,9 @@
|
||||
- ubuntu
|
||||
- firefox
|
||||
- docker
|
||||
- dotfiles
|
||||
- java
|
||||
- jetbrains
|
||||
- compton
|
||||
- signal
|
||||
- virtual
|
||||
- lutris
|
||||
- prusa-slicer
|
||||
|
@ -1,24 +0,0 @@
|
||||
---
|
||||
- name: install required packages
|
||||
become: yes
|
||||
apt:
|
||||
update_cache: yes
|
||||
pkg:
|
||||
- git
|
||||
- make
|
||||
|
||||
- name: create src dir
|
||||
file:
|
||||
path: ~/src
|
||||
|
||||
- name: checkout dotfiles
|
||||
git:
|
||||
repo: "{{ dotfiles.repo }}"
|
||||
dest: "{{ ansible_user_dir }}/src/dotfiles"
|
||||
clone: yes
|
||||
update: yes
|
||||
|
||||
- name: install
|
||||
make:
|
||||
target: install
|
||||
chdir: "{{ ansible_user_dir }}/src/dotfiles"
|
@ -1,3 +0,0 @@
|
||||
---
|
||||
dotfiles:
|
||||
repo: https://github.com/pgrondek/dotfiles.git
|
@ -1,38 +0,0 @@
|
||||
- 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
|
@ -55,8 +55,7 @@
|
||||
- name: copy
|
||||
become: yes
|
||||
copy:
|
||||
src: "{{ ansible_user_dir }}/src/looking-glass/client/build/looking-glass-client"
|
||||
remote_src: yes
|
||||
remote_src: "{{ ansible_user_dir }}/src/looking-glass/client/build/looking-glass-client"
|
||||
dest: "/usr/local/bin/looking-glass-client"
|
||||
mode: "0755"
|
||||
force: yes
|
||||
|
Loading…
Reference in New Issue
Block a user