Pipenv install in deploy mode
This commit is contained in:
parent
9916216d24
commit
7e14092d17
2 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@ jobs:
|
||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||||
- run: pipenv install --dev
|
- run: pipenv install --dev --deploy
|
||||||
- run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
|
- run: git clone https://github.com/kewlfft/ansible-aur.git ~/.ansible/plugins/modules/aur --depth=1
|
||||||
- save_cache:
|
- save_cache:
|
||||||
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
key: cache-{{ .Branch }}-{{ checksum "Pipfile.lock" }}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
- name: Create VSCode user directory
|
- name: Create VSCode user directory
|
||||||
file:
|
file:
|
||||||
path: '{{ home }}/.config/Code - OSS/User'
|
path: '{{ home }}/.config/Code/User'
|
||||||
state: directory
|
state: directory
|
||||||
owner: "{{ user }}"
|
owner: "{{ user }}"
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
@ -19,14 +19,14 @@
|
||||||
- name: Install VSCode settings
|
- name: Install VSCode settings
|
||||||
copy:
|
copy:
|
||||||
src: ./files/vscode-settings.json
|
src: ./files/vscode-settings.json
|
||||||
dest: "{{ home }}/.config/Code - OSS/User/settings.json"
|
dest: "{{ home }}/.config/Code/User/settings.json"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
owner: "{{ user }}"
|
owner: "{{ user }}"
|
||||||
|
|
||||||
- name: Install VSCode keybindings
|
- name: Install VSCode keybindings
|
||||||
copy:
|
copy:
|
||||||
src: ./files/vscode-keybindings.json
|
src: ./files/vscode-keybindings.json
|
||||||
dest: "{{ home }}/.config/Code - OSS/User/keybindings.json"
|
dest: "{{ home }}/.config/Code/User/keybindings.json"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
owner: "{{ user }}"
|
owner: "{{ user }}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue